commit | 57a13c689e583a26bad65ce82a85824c5d191a3b | [log] [tgz] |
---|---|---|
author | Jackson Cooper-Driver <jackson.cooper-driver@arm.com> | Wed Sep 04 16:01:45 2024 +0000 |
committer | Anton Komlev <Anton.Komlev@arm.com> | Wed Sep 11 10:43:18 2024 +0200 |
tree | 31abcce31158eb66339b64d0d658b5e67708841c | |
parent | 6594070bd43a562a560b4be0cc3494b9f09f09da [diff] [blame] |
LIB: Fix missing return code A return code is required in the case where the guarding assertion is optimised out. Change-Id: I783baed1f88f42ae1551e5f89a79b0a054b45295 Signed-off-by: Jackson Cooper-Driver <jackson.cooper-driver@arm.com>
diff --git a/lib/tfm_vprintf/src/tfm_vprintf.c b/lib/tfm_vprintf/src/tfm_vprintf.c index 3d4abd9..56365eb 100644 --- a/lib/tfm_vprintf/src/tfm_vprintf.c +++ b/lib/tfm_vprintf/src/tfm_vprintf.c
@@ -31,6 +31,7 @@ default: /* String must start with LOG_MARKER_* */ assert(0); + return NULL; } }