1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

tests/puf_sram: add newline in printf

puts() will already print the newline itself, but for printf()
we'll have to include it manually.
This commit is contained in:
Benjamin Valentin 2019-11-25 02:08:59 +01:00
parent 8337ab111e
commit 0da8c8f094

View File

@ -25,7 +25,7 @@ int main(void)
{
puts("Start: Test random number generator");
printf("Success: Data for puf_sram_seed: [0x%08" PRIX32 "]", puf_sram_seed);
printf("Success: Data for puf_sram_seed: [0x%08" PRIX32 "]\n", puf_sram_seed);
puts("End: Test finished");
return 0;