From: Doug Evans Date: Sat, 1 Oct 1994 03:57:21 +0000 (+0000) Subject: (process_command): Fix typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=78b4f182844c792171d30331cf2db4ad11e602a0;p=gcc.git (process_command): Fix typo. From-SVN: r8189 --- diff --git a/gcc/gcc.c b/gcc/gcc.c index bf65e8e6b14..13c503e7446 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -2660,7 +2660,7 @@ process_command (argc, argv) char *string = xmalloc (len + 1); strncpy (string, value, len-7); strcat (string, "include"); - add_prefix (&include_prefix, string, 1, 0, 0); + add_prefix (&include_prefixes, string, 1, 0, 0); } } }