Fix printf warning

Andrew Haley aph at redhat.com
Wed May 11 07:35:01 PDT 2011


Fix to suppress warning on Debian.  Committed as trivial/obvious.

Andrew.


2011-05-11  Andrew Haley  <aph at redhat.com>

	* icedtea-hugepage-7034464.patch: Change "%*lx" printf format to
	"%*x" to prevent a compiler warning.

diff -r bfbacc38e2ca -r 72231e9aae52 patches/icedtea-hugepage-7034464.patch
--- a/patches/icedtea-hugepage-7034464.patch    Wed May 11 15:23:27 2011 +0100
+++ b/patches/icedtea-hugepage-7034464.patch    Wed May 11 15:32:04 2011 +0100
@@ -180,7 +180,7 @@
 +        char chars[257];
 +        long x = 0;
 +        if (fgets(chars, sizeof(chars), fp)) {
-+          if (sscanf(chars, "%lx-%*lx", &x) == 1
++          if (sscanf(chars, "%lx-%*x", &x) == 1
 +              && x == (long)p) {
 +            if (strstr (chars, "hugepage")) {
 +              result = true;





More information about the distro-pkg-dev mailing list