Update .comm error messages to assume an unsigned value.
[deliverable/binutils-gdb.git] / gas / read.c
index 061dfd41b677c0767f9f5038426536f66ddd90af..417934807515834335e96612d80c22f68c7caf76 100644 (file)
@@ -1389,7 +1389,8 @@ s_comm (ignore)
 
   if ((temp = get_absolute_expression ()) < 0)
     {
-      as_warn (_(".COMMon length (%ld) < 0 ignored"), (long) temp);
+      as_warn (_(".COMMon length (%lu) out of range ignored"),
+              (unsigned long) temp);
       ignore_rest_of_line ();
       if (flag_mri)
        mri_comment_end (stop, stopc);
This page took 0.024088 seconds and 4 git commands to generate.