mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-12 16:06:59 +00:00
oneshot/oneshot_main.c: fix printf warning
fix printf warning in examples/oneshot Signed-off-by: p-szafonimateusz <p-szafonimateusz@xiaomi.com>
This commit is contained in:
parent
42b16e3004
commit
097ed5c27d
1 changed files with 2 additions and 2 deletions
|
|
@ -208,8 +208,8 @@ int main(int argc, FAR char *argv[])
|
|||
{
|
||||
/* Wait for the maximum */
|
||||
|
||||
printf("Starting oneshot timer with delay %llu microseconds\n",
|
||||
maxus);
|
||||
printf("Starting oneshot timer with delay %" PRId64
|
||||
" microseconds\n", maxus);
|
||||
|
||||
start.ts.tv_sec = ts.tv_sec;
|
||||
start.ts.tv_nsec = ts.tv_nsec;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue