summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/bbu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/bbu.c b/common/bbu.c
index 1b22139908..c5dda8c8bd 100644
--- a/common/bbu.c
+++ b/common/bbu.c
@@ -307,8 +307,8 @@ static int bbu_std_file_handler(struct bbu_handler *handler,
oflags |= O_CREAT;
} else {
if (!S_ISREG(s.st_mode) && s.st_size < data->len) {
- printf("Image (%lld) is too big for device (%zd)\n",
- s.st_size, data->len);
+ printf("Image (%zd) is too big for device (%lld)\n",
+ data->len, s.st_size);
}
}