Skip to content

Commit

Permalink
Fixing fprintf in timer.c
Browse files Browse the repository at this point in the history
  • Loading branch information
TomTheBear committed Dec 24, 2019
1 parent 71a859b commit a3d46e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/timer.c
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ timer_sleep(unsigned long usec)

if (sleepbase == 0x0ULL)
{
fprintf("Sleeping longer as likwid_sleep() called without prior initialization\n");
fprintf(stderr, "Sleeping longer as likwid_sleep() called without prior initialization\n");
init_sleep();
}
if (usec >= 1000000)
Expand Down

0 comments on commit a3d46e5

Please sign in to comment.