Hsuan-ting Chen has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/63113 )
Change subject: commonlib/bsd/elog: Include <stdint.h> instead of <inttypes.h> ......................................................................
commonlib/bsd/elog: Include <stdint.h> instead of <inttypes.h>
The header file <inttypes.h> includes <stdint.h> and defines some additional PRI* macros. Since elog.h and elog.c do not use any of the PRI* macro, we should include <stdint.h> directly.
Change-Id: Iac1f4f53e43f171ecef95533cd6a3bf5dff64ec4 --- M src/commonlib/bsd/include/commonlib/bsd/elog.h 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/13/63113/1
diff --git a/src/commonlib/bsd/include/commonlib/bsd/elog.h b/src/commonlib/bsd/include/commonlib/bsd/elog.h index 29c781b..35a42e6 100644 --- a/src/commonlib/bsd/include/commonlib/bsd/elog.h +++ b/src/commonlib/bsd/include/commonlib/bsd/elog.h @@ -3,7 +3,7 @@ #ifndef _COMMONLIB_BSD_ELOG_H_ #define _COMMONLIB_BSD_ELOG_H_
-#include <inttypes.h> +#include <stdint.h>
#include <commonlib/bsd/cb_err.h>