PERFORCE change 112392 for review
Matt Jacob
mjacob at FreeBSD.org
Sun Dec 31 20:48:56 PST 2006
http://perforce.freebsd.org/chv.cgi?CH=112392
Change 112392 by mjacob at mjexp on 2007/01/01 04:48:15
Remove obfuscation that I added while mentally impaired.
A format of %z matches a size_t arg. For both RELENG_6
and HEAD.
Noticed by: Scott
Affected files ...
.. //depot/projects/mjexp/sys/geom/multipath/g_multipath.c#9 edit
Differences ...
==== //depot/projects/mjexp/sys/geom/multipath/g_multipath.c#9 (text+ko) ====
@@ -560,15 +560,9 @@
return;
}
if (pp0->mediasize != pp1->mediasize) {
-#if __FreeBSD_version < 700000
- gctl_error(req, "Provider %s is %llu; Provider %s is %llu",
- pp0->name, (unsigned long long) pp0->mediasize,
- pp1->name, (unsigned long long) pp1->mediasize);
-#else
gctl_error(req, "Provider %s is %zu; Provider %s is %zu",
pp0->name, (size_t) pp0->mediasize,
pp1->name, (size_t) pp1->mediasize);
-#endif
return;
}
if (pp0->sectorsize != pp1->sectorsize) {
More information about the p4-projects
mailing list