Commit 33261b0a by David O'Brien Committed by Jeff Law

elfos.h (ASM_GENERATE_INTERNAL_LABEL): Make printf specification match cast.

        * config/elfos.h (ASM_GENERATE_INTERNAL_LABEL): Make printf
        specification match cast.

From-SVN: r34548
parent af889c6c
2000-06-14 David O'Brien <obrien@FreeBSD.org>
* config/elfos.h (ASM_GENERATE_INTERNAL_LABEL): Make printf
specification match cast.
Wed Jun 14 09:25:57 2000 Jeffrey A Law (law@cygnus.com)
* configure.in: Revert AC_TYPE_GETGROUPS patch from June 13.
......
......@@ -161,7 +161,7 @@ Boston, MA 02111-1307, USA. */
#define ASM_GENERATE_INTERNAL_LABEL(LABEL, PREFIX, NUM) \
do \
{ \
sprintf (LABEL, "*.%s%d", PREFIX, (unsigned) (NUM)); \
sprintf (LABEL, "*.%s%u", PREFIX, (unsigned) (NUM)); \
} \
while (0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment