diff options
author | DJ Delorie <dj@delorie.com> | 2003-05-03 17:14:52 +0000 |
---|---|---|
committer | DJ Delorie <dj@delorie.com> | 2003-05-03 17:14:52 +0000 |
commit | a08994955afaa116a70cb5b66772a3d9ceab1ce8 (patch) | |
tree | e71592b3fa900020d4bf2773347f7bda1df7cdc6 /libiberty | |
parent | b344a2a7aeb2f9439bb025a878d60c54224ad574 (diff) | |
download | gdb-a08994955afaa116a70cb5b66772a3d9ceab1ce8.tar.gz |
merge from gcc
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 4 | ||||
-rw-r--r-- | libiberty/cp-demangle.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index ae5a7c5499b..5beb09bb4fc 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,7 @@ +2003-05-03 Carlo Wood <carlo@alinoe.com> + + * cp-demangle.c: Fix typo in "char_traints" string-literal. + 2003-04-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * vsnprintf.c (vsnprintf): Don't pad string with extra nulls. diff --git a/libiberty/cp-demangle.c b/libiberty/cp-demangle.c index 9adf5fd0503..5dcce5560ee 100644 --- a/libiberty/cp-demangle.c +++ b/libiberty/cp-demangle.c @@ -3398,7 +3398,7 @@ demangle_substitution (dm, template_p) } else { - RETURN_IF_ERROR (result_add (dm, "std::basic_istream<char, std::char_traints<char> >")); + RETURN_IF_ERROR (result_add (dm, "std::basic_istream<char, std::char_traits<char> >")); new_last_source_name = "basic_istream"; } *template_p = 0; |