mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 09:49:21 +08:00
drivers/input/djoystick.c: Fix a syslog format
This commit is contained in:
parent
874101aede
commit
0b1c2322c4
1 changed files with 1 additions and 1 deletions
|
@ -674,7 +674,7 @@ static int djoy_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
ierr("ERROR: Unrecognized command: %ld\n", cmd);
|
ierr("ERROR: Unrecognized command: %d\n", cmd);
|
||||||
ret = -ENOTTY;
|
ret = -ENOTTY;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue