diff options
| -rw-r--r-- | gcc/ChangeLog | 2 | ||||
| -rw-r--r-- | gcc/extend.texi | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2e39eca..6472f75 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ 2000-08-03 Mark Mitchell <mark@codesourcery.com> + * extend.texi: Fix typo in last change. + * extend.texi: Add commentary on statement-expressions and their interactions with C++. diff --git a/gcc/extend.texi b/gcc/extend.texi index ed4e75f..8d047f6 100644 --- a/gcc/extend.texi +++ b/gcc/extend.texi @@ -220,7 +220,7 @@ on, @example string a, b; -printf("%s", toupper((a+b).c_str()[0])); +printf("%c", toupper((a+b).c_str()[0])); @end example @noindent |
