diff options
Diffstat (limited to 'gcc/config/svr3.h')
-rw-r--r-- | gcc/config/svr3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/svr3.h b/gcc/config/svr3.h index 7fa2b4b..a398069 100644 --- a/gcc/config/svr3.h +++ b/gcc/config/svr3.h @@ -64,7 +64,7 @@ Boston, MA 02111-1307, USA. #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED) \ ( fputs (".comm ", (FILE)), \ assemble_name ((FILE), (NAME)), \ - fprintf ((FILE), ",%u\n", (SIZE))) + fprintf ((FILE), ",%lu\n", (unsigned long)(SIZE))) /* This says how to output an assembler line to define a local common symbol. */ |