summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMumit Khan <khan@xraylith.wisc.edu>2000-01-06 22:00:02 +0000
committerMumit Khan <khan@gcc.gnu.org>2000-01-06 22:00:02 +0000
commitfbb740dacd26c4a22265af0f2cead837429c7d4e (patch)
tree726c4fde1a21fe2440a1f11e8e26942bcdbffebf /gcc
parent9b15c17f0d2f223e09cebf99f47d0972d7568f9c (diff)
downloadgcc-fbb740dacd26c4a22265af0f2cead837429c7d4e.tar.gz
prefix.c (update_path): Fix typo in variable name.
2000-01-06 Mumit Khan <khan@xraylith.wisc.edu> * prefix.c (update_path): Fix typo in variable name. From-SVN: r31260
Diffstat (limited to 'gcc')
-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 ac90acd3443..a8cb181e385 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 e37f69be1ad..687d559949c 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