From: Peter Rajnoha Date: Mon, 21 Feb 2011 13:09:27 +0000 (+0000) Subject: %ld -> PRIu64 X-Git-Tag: v2_02_91~1070 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=c901a92aa548c2794aa33f94384e3e1205804a3b;p=lvm2.git %ld -> PRIu64 --- diff --git a/lib/metadata/pv_manip.c b/lib/metadata/pv_manip.c index a5b6815a7..cb37745f1 100644 --- a/lib/metadata/pv_manip.c +++ b/lib/metadata/pv_manip.c @@ -436,7 +436,7 @@ int pv_resize(struct physical_volume *pv, uint32_t old_pe_count, new_pe_count = 0; if (size < pv_min_size()) { - log_error("Size must exceed minimum of %ld sectors on PV %s.", + log_error("Size must exceed minimum of %" PRIu64 " sectors on PV %s.", pv_min_size(), pv_dev_name(pv)); return 0; }