tests: puf_sram: fix printf format strings

This commit is contained in:
Martine Lenders 2018-08-01 23:14:11 +02:00 committed by Martine Lenders
parent 81bad0d6e8
commit 49b43a30a5

View File

@ -17,6 +17,7 @@
*
* @}
*/
#include <inttypes.h>
#include <stdio.h>
#include "puf_sram.h"
@ -24,7 +25,7 @@ int main(void)
{
puts("Start: Test random number generator");
printf("Success: Data for puf_sram_seed: [0x%08lX]", puf_sram_seed);
printf("Success: Data for puf_sram_seed: [0x%08" PRIX32 "]", puf_sram_seed);
puts("End: Test finished");
return 0;