]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
fix compiler warnings from builds for 64 bit processors.
authorNathan Scott <nathans@sgi.com>
Tue, 30 Jul 2002 04:04:20 +0000 (04:04 +0000)
committerNathan Scott <nathans@sgi.com>
Tue, 30 Jul 2002 04:04:20 +0000 (04:04 +0000)
mkfs/xfs_mkfs.c

index 587d80321df3f65b0175bfb86c697a90e6aa604e..a7cf0be5a02e07248e9d3ad48213c555d600f024 100644 (file)
@@ -1667,10 +1667,10 @@ main(int argc, char **argv)
                                tmp_agsize = agsize + dsunit;
                        if (daflag || dasize) {
                                fprintf(stderr,
-"Warning: AG size is a multiple of stripe width.  This can cause performance\n"
-"problems by aligning all AGs on the same disk.  To avoid this, rerun mkfs with\n"
-"an AG size that is one stripe unit smaller, for example %lld\n",
-                                       tmp_agsize);
+"Warning: AG size is a multiple of stripe width.  This can cause performance\n\
+problems by aligning all AGs on the same disk.  To avoid this, run mkfs with\n\
+an AG size that is one stripe unit smaller, for example %llu\n",
+                                       (unsigned long long)tmp_agsize);
                        } else {
                                agsize = tmp_agsize;
                                agcount = dblocks/agsize + (dblocks % agsize != 0);