diff options
author | Mumit Khan <khan@xraylith.wisc.edu> | 2000-01-06 22:00:02 +0000 |
---|---|---|
committer | Mumit Khan <khan@gcc.gnu.org> | 2000-01-06 22:00:02 +0000 |
commit | fbb740dacd26c4a22265af0f2cead837429c7d4e (patch) | |
tree | 726c4fde1a21fe2440a1f11e8e26942bcdbffebf /gcc | |
parent | 9b15c17f0d2f223e09cebf99f47d0972d7568f9c (diff) | |
download | gcc-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/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/prefix.c | 2 |
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 |