1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-27 18:55:19 +03:00

Fix compile warning in lvmcmdline.c - use C99 PRIu64 for uint64_t.

Author: Dave Wysochanski <dwysocha@redhat.com>
This commit is contained in:
Dave Wysochanski 2009-07-07 01:51:00 +00:00
parent 4c611a220a
commit 6cf4278659

View File

@ -285,7 +285,7 @@ static int _size_arg(struct cmd_context *cmd __attribute((unused)), struct arg *
if (adjustment) {
v_tmp += (512 - adjustment);
log_error("Size is not a multiple of 512. "
"Try using %lu or %lu.",
"Try using %"PRIu64" or %"PRIu64".",
v_tmp - 512, v_tmp);
return 0;
}