* gas/i386/opcode.d: Tweak lgdt for 2001-07-18 change.
[deliverable/binutils-gdb.git] / gas / stabs.c
index eed11b31c697d6b3763305b54060be3ab2714dda..2a07f22ac2fb01ae72a0a5be88ee14637ccf5bd9 100644 (file)
@@ -539,7 +539,7 @@ generate_asm_file (type, file)
   while (tmp < endp)
     {
       char *bslash = strchr (tmp, '\\');
-      int len = (bslash ? (bslash - tmp + 1) : strlen (tmp));
+      size_t len = (bslash) ? (size_t) (bslash - tmp + 1) : strlen (tmp);
 
       /* Double all backslashes, since demand_copy_C_string (used by
         s_stab to extract the part in quotes) will try to replace them as
This page took 0.023303 seconds and 4 git commands to generate.