Skip to content

Commit

Permalink
replaced printf formatter with generic macro
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegHahm committed Jun 24, 2013
1 parent d01fd9a commit 167328d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sys/vtimer/vtimer.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#include <stddef.h>
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>

#include <irq.h>
#include <queue.h>
#include <timex.h>
Expand Down Expand Up @@ -282,7 +284,7 @@ int vtimer_set_msg(vtimer_t *t, timex_t interval, unsigned int pid, void *ptr)

void vtimer_print(vtimer_t *t)
{
printf("Seconds: %u - Microseconds: %u\n \
printf("Seconds: %"PRIu32" - Microseconds: %"PRIu32"\n \
action: %p\n \
action: %p\n \
pid: %u\n",
Expand Down

0 comments on commit 167328d

Please sign in to comment.