aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/prefix.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ac90acd..a8cb181 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2000-01-06 Mumit Khan <khan@xraylith.wisc.edu>
+
+ * prefix.c (update_path): Fix typo in variable name.
+
2000-01-06 Richard Henderson <rth@cygnus.com>
* flow.c (mark_set_1): Use loop_depth+1 as reference weight.
diff --git a/gcc/prefix.c b/gcc/prefix.c
index e37f69b..687d559 100644
--- a/gcc/prefix.c
+++ b/gcc/prefix.c
@@ -330,7 +330,7 @@ update_path (path, key)
do {
if (*new_path == '/')
*new_path = DIR_SEPARATOR;
- } while (*newpath++);
+ } while (*new_path++);
}
#endif