libpayload: Use __func__ instead of old __FUNCTION__

Change-Id: Ic3c22ac101a2ff44f97b2ac3fe3c0a89391718de
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/72380
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
This commit is contained in:
Elyes Haouas
2023-01-22 08:55:59 +01:00
committed by Felix Singer
parent b06ba874fb
commit 5331462e9e
3 changed files with 4 additions and 4 deletions

View File

@ -50,7 +50,7 @@ void mock_assert(const int result, const char *const expression, const char *con
if ((statement) == 0) { \
fprintf(stderr, "assertion failed in file %s, " \
"function %s(), line %d\n", \
__FILE__, __FUNCTION__, __LINE__); \
__FILE__, __func__, __LINE__); \
abort(); \
}
#endif