diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2017-09-12 19:00:36 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-09-15 08:05:10 -0400 |
commit | e2888a7fa7f8d23396c4b25ea763fe1f38851b3d (patch) | |
tree | 09401d77ba44f5da46481444ee3c029a1a3d07af /cmd/blk_common.c | |
parent | 723b43daec7ee2ddb600cfcb9b0253d4a71c3915 (diff) |
cmd: blk: Use LBAFU in the common block command
There is already a macro LBAFU to aid formatted print with lbaint_t
variables. Let's use it in the common block command codes.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'cmd/blk_common.c')
-rw-r--r-- | cmd/blk_common.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/cmd/blk_common.c b/cmd/blk_common.c index 86c75e78d8..0c0c23eb37 100644 --- a/cmd/blk_common.c +++ b/cmd/blk_common.c @@ -68,9 +68,8 @@ int blk_common_cmd(int argc, char * const argv[], enum if_type if_type, ulong cnt = simple_strtoul(argv[4], NULL, 16); ulong n; - printf("\n%s read: device %d block # %lld, count %ld ... ", - if_name, *cur_devnump, (unsigned long long)blk, - cnt); + printf("\n%s read: device %d block # "LBAFU", count %lu ... ", + if_name, *cur_devnump, blk, cnt); n = blk_read_devnum(if_type, *cur_devnump, blk, cnt, (ulong *)addr); @@ -84,9 +83,8 @@ int blk_common_cmd(int argc, char * const argv[], enum if_type if_type, ulong cnt = simple_strtoul(argv[4], NULL, 16); ulong n; - printf("\n%s write: device %d block # %lld, count %ld ... ", - if_name, *cur_devnump, (unsigned long long)blk, - cnt); + printf("\n%s write: device %d block # "LBAFU", count %lu ... ", + if_name, *cur_devnump, blk, cnt); n = blk_write_devnum(if_type, *cur_devnump, blk, cnt, (ulong *)addr); |