diff options
author | DJ Delorie <dj@redhat.com> | 2009-11-22 16:58:53 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2009-11-22 16:58:53 +0000 |
commit | ca938790c12fac9816fc9cb61ef2c79f1589c791 (patch) | |
tree | aaa1cd434c0d5318e556f3e0f793d4ac73c9f076 /libiberty | |
parent | a9840291c6c59f9edbe9d07269696d6e6385a428 (diff) | |
download | fsf-binutils-gdb-ca938790c12fac9816fc9cb61ef2c79f1589c791.zip fsf-binutils-gdb-ca938790c12fac9816fc9cb61ef2c79f1589c791.tar.gz fsf-binutils-gdb-ca938790c12fac9816fc9cb61ef2c79f1589c791.tar.bz2 |
merge from gcc
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 4 | ||||
-rw-r--r-- | libiberty/dyn-string.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index fbc03fe..4d16be4 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,7 @@ +2009-11-22 Steve Ward <planet36@gmail.com> + + * dyn-string.c (dyn_string_append_char): Fix typo in comment. + 2009-11-20 Ben Elliston <bje@au.ibm.com> * pex-unix.c (pex_child_error): Define writeerr macro to avoid diff --git a/libiberty/dyn-string.c b/libiberty/dyn-string.c index 9de50ed..faa8d94 100644 --- a/libiberty/dyn-string.c +++ b/libiberty/dyn-string.c @@ -336,7 +336,7 @@ dyn_string_append_cstr (dyn_string_t dest, const char *s) return 1; } -/* Appends C to the end of DEST. Returns 1 on success. On failiure, +/* Appends C to the end of DEST. Returns 1 on success. On failure, if RETURN_ON_ALLOCATION_FAILURE, deletes DEST and returns 0. */ int |