* config/tc-spu.c (md_assemble): Cast printf string size parameter
authorNick Clifton <nickc@redhat.com>
Sun, 29 Oct 2006 18:18:34 +0000 (18:18 +0000)
committerNick Clifton <nickc@redhat.com>
Sun, 29 Oct 2006 18:18:34 +0000 (18:18 +0000)
  to int in order to avoid a compiler warning.

gas/ChangeLog
gas/config/tc-spu.c

index 17226e776ba4eabe899d95faef816f0f6a3c4a5b..9172b7fa6c6d01c4927cfdf292f02db12215b391 100644 (file)
@@ -1,3 +1,8 @@
+2006-10-29  Nick Clifton  <nickc@redhat.com>
+
+       * config/tc-spu.c (md_assemble): Cast printf string size parameter
+       to int in order to avoid a compiler warning.
+
 2006-10-27  Andrew Stubbs  <andrew.stubbs@st.com>
 
        * config/tc-sh.c (md_assemble): Define size of branches.
index 8b4c8f8db01b6c09a4911bd1a9a93b6da158d7e4..681bc20ddced6b9837fbb3d1046fa5232d20d07d 100644 (file)
@@ -333,7 +333,7 @@ md_assemble (char *op)
       const char *d = syntax_error_param;
       while (*d != '$')
        d--;
-      as_warn (_("Treating '%-*s' as a symbol."), syntax_error_param - d, d);
+      as_warn (_("Treating '%-*s' as a symbol."), (int)(syntax_error_param - d), d);
     }
 
   /* grow the current frag and plop in the opcode */