diff options
author | Stan Shebs <shebs@codesourcery.com> | 1999-04-26 18:34:20 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1999-04-26 18:34:20 +0000 |
commit | 7a292a7adf506b866905b06b3024c0fd411c4583 (patch) | |
tree | 5b208bb48269b8a82d5c3a5f19c87b45a62a22f4 /gdb/c-typeprint.c | |
parent | This commit was generated by cvs2svn to track changes on a CVS vendor (diff) | |
download | binutils-gdb-7a292a7adf506b866905b06b3024c0fd411c4583.tar.gz binutils-gdb-7a292a7adf506b866905b06b3024c0fd411c4583.tar.bz2 binutils-gdb-7a292a7adf506b866905b06b3024c0fd411c4583.zip |
import gdb-19990422 snapshot
Diffstat (limited to 'gdb/c-typeprint.c')
-rw-r--r-- | gdb/c-typeprint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/c-typeprint.c b/gdb/c-typeprint.c index e15550309dc..c0d0333eb6a 100644 --- a/gdb/c-typeprint.c +++ b/gdb/c-typeprint.c @@ -913,7 +913,7 @@ c_type_print_base (type, stream, show, level) char *p; char *demangled_no_class = demangled_name; - while (p = strchr (demangled_no_class, ':')) + while ((p = strchr (demangled_no_class, ':'))) { demangled_no_class = p; if (*++demangled_no_class == ':') |