From: Gabriel Dos Reis Date: Sun, 3 Jul 2005 14:14:28 +0000 (+0000) Subject: * varasm.c (assemble_variable): Fix format specifier thinko. X-Git-Tag: misc/cutover-cvs2svn~1991 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3c25d6a8c13ffc9696fd641947d4ce3250ca53e6;p=thirdparty%2Fgcc.git * varasm.c (assemble_variable): Fix format specifier thinko. From-SVN: r101550 --- diff --git a/gcc/varasm.c b/gcc/varasm.c index 59abefbdf127..db54f9867305 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -1745,7 +1745,7 @@ assemble_variable (tree decl, int top_level ATTRIBUTE_UNUSED, #if !defined(ASM_OUTPUT_ALIGNED_COMMON) && !defined(ASM_OUTPUT_ALIGNED_DECL_COMMON) && !defined(ASM_OUTPUT_ALIGNED_BSS) if ((unsigned HOST_WIDE_INT) DECL_ALIGN_UNIT (decl) > rounded) warning (0, "requested alignment for %q+D is greater than " - "implemented alignment of %d", decl, rounded); + "implemented alignment of %wu", decl, rounded); #endif /* If the target cannot output uninitialized but not common global data