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/prefix.c | |
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/prefix.c')
-rw-r--r-- | gcc/prefix.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |