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:
parent
8337ab111e
commit
0da8c8f094
@ -25,7 +25,7 @@ int main(void)
|
|||||||
{
|
{
|
||||||
puts("Start: Test random number generator");
|
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");
|
puts("End: Test finished");
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user