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:
committed by
Felix Singer
parent
b06ba874fb
commit
5331462e9e
@ -148,7 +148,7 @@ static inline void *xmalloc_work(size_t size, const char *file,
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
#define xmalloc(size) xmalloc_work((size), __FILE__, __FUNCTION__, __LINE__)
|
||||
#define xmalloc(size) xmalloc_work((size), __FILE__, __func__, __LINE__)
|
||||
|
||||
static inline void *xzalloc_work(size_t size, const char *file,
|
||||
const char *func, int line)
|
||||
@ -157,7 +157,7 @@ static inline void *xzalloc_work(size_t size, const char *file,
|
||||
memset(ret, 0, size);
|
||||
return ret;
|
||||
}
|
||||
#define xzalloc(size) xzalloc_work((size), __FILE__, __FUNCTION__, __LINE__)
|
||||
#define xzalloc(size) xzalloc_work((size), __FILE__, __func__, __LINE__)
|
||||
|
||||
static inline void *xmemalign_work(size_t align, size_t size, const char *file,
|
||||
const char *func, int line)
|
||||
|
Reference in New Issue
Block a user