diff options
Diffstat (limited to 'gdb/environ.c')
-rw-r--r-- | gdb/environ.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/environ.c b/gdb/environ.c index 2685d64..62d23e6 100644 --- a/gdb/environ.c +++ b/gdb/environ.c @@ -175,7 +175,7 @@ unset_in_environ (struct gdb_environ *e, char *var) xfree (s); /* Walk through the vector, shuffling args down by one, including the NULL terminator. Can't use memcpy() here since the regions - overlap, and memmove() might not be available. */ + overlap, and memmove() might not be available. */ while ((vector[0] = vector[1]) != NULL) { vector++; |