Fix printf warning

Dr Andrew John Hughes ahughes at redhat.com
Wed May 11 07:46:06 PDT 2011


On 15:35 Wed 11 May     , Andrew Haley wrote:
> 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;
> 
> 

Has this change been made upstream?  I fear that, while the change is
trivial and I agree with it, this breaks the relationship between the
patch and the original changeset.  This may result in this change
getting lost if the original 7034464 is committed upstream.

-- 
Andrew :)

Free Java Software Engineer
Red Hat, Inc. (http://www.redhat.com)

Support Free Java!
Contribute to GNU Classpath and IcedTea
http://www.gnu.org/software/classpath
http://icedtea.classpath.org
PGP Key: F5862A37 (https://keys.indymedia.org/)
Fingerprint = EA30 D855 D50F 90CD F54D  0698 0713 C3ED F586 2A37



More information about the distro-pkg-dev mailing list