mirror of
https://github.com/apache/nuttx.git
synced 2026-09-22 22:55:02 +08:00
rx65n: Add missing parameters in printf
Printf format string requires 2 parameters, but 0 parameter was given. Add these missing parameters. Signed-off-by: Masanari Iida <standby24x7@gmail.com>
This commit is contained in:
committed by
Xiang Xiao
parent
4f2df0311d
commit
707404d415
@@ -2889,7 +2889,7 @@ static int rx65n_epconfigure(FAR struct usbdev_ep_s *ep,
|
||||
if (!ep || !desc)
|
||||
{
|
||||
usbtrace(TRACE_DEVERROR(RX65N_TRACEERR_INVALIDPARMS), 0);
|
||||
printf("ERROR: ep=%p desc=%p\n");
|
||||
printf("ERROR: ep=%p desc=%p\n", ep, desc);
|
||||
return -EINVAL;
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user