mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
nshlib/ddcmd:Fixed NSH_CMDOPT_DD_STATS output format warning in 64-bit environment
In file included from nsh_ddcmd.c:44:
nsh_ddcmd.c: In function 'cmd_dd':
nsh_ddcmd.c:456:20: error: format '%llu' expects argument of type 'long long unsigned int', but argument 3 has type 'uint64_t' {aka 'long unsigned int'} [-Werror=format=]
456 | nsh_output(vtbl, "%llu bytes copied, %u usec, ",
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
457 | total, (unsigned int)elapsed);
| ~~~~~
| |
| uint64_t {aka long unsigned int}
nsh_console.h:55:49: note: in definition of macro 'nsh_output'
55 | # define nsh_output(v, ...) (v)->output(v, ##__VA_ARGS__)
| ^~~~~~~~~~~
nsh_ddcmd.c:456:24: note: format string is defined here
456 | nsh_output(vtbl, "%llu bytes copied, %u usec, ",
| ~~~^
| |
| long long unsigned int
| %lu
cc1: all warnings being treated as errors
Signed-off-by: chenrun1 <chenrun1@xiaomi.com>
This commit is contained in:
parent
8c0100b193
commit
ffcee721ce
1 changed files with 2 additions and 2 deletions
|
|
@ -443,8 +443,8 @@ int cmd_dd(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv)
|
|||
|
||||
total = ((uint64_t)sector * (uint64_t)dd.sectsize);
|
||||
|
||||
nsh_output(vtbl, "%llu bytes copied, %u usec, ",
|
||||
total, (unsigned int)elapsed);
|
||||
nsh_output(vtbl, "%" PRIu64 "bytes copied, %" PRIu64 " usec, ",
|
||||
total, elapsed);
|
||||
nsh_output(vtbl, "%u KB/s\n" ,
|
||||
(unsigned int)(((double)total / 1024)
|
||||
/ ((double)elapsed / USEC_PER_SEC)));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue