* breakpoint.c, buildsym.c, c-exp.y, coffread.c, command.c,
[deliverable/binutils-gdb.git] / gdb / c-exp.y
index 20effd23a847e5cb0931205189af245d466c0eee..4cc8eb67f558044313126dc19afd4afefa148a96 100644 (file)
@@ -1221,7 +1221,7 @@ yylex ()
          {
            char *err_copy = (char *) alloca (p - tokstart + 1);
 
-           (void) memcpy (err_copy, tokstart, p - tokstart);
+           memcpy (err_copy, tokstart, p - tokstart);
            err_copy[p - tokstart] = 0;
            error ("Invalid number \"%s\".", err_copy);
          }
This page took 0.024962 seconds and 4 git commands to generate.