X-Git-Url: https://oss.titaniummirror.com/gitweb?p=msp430-binutils.git;a=blobdiff_plain;f=binutils%2Fcxxfilt.c;h=770df9baf6e0307a9e53f3dca0cd38119f295251;hp=e0d1b3fa8ed67a9eef477ee76ef663a839c065e5;hb=88750007d7869f178f0ba528f41efd3b74c424cf;hpb=6df9443a374e2b81278c61b8afc0a1eef7db280b diff --git a/binutils/cxxfilt.c b/binutils/cxxfilt.c index e0d1b3f..770df9b 100644 --- a/binutils/cxxfilt.c +++ b/binutils/cxxfilt.c @@ -63,12 +63,12 @@ demangle_it (char *mangled_name) result = cplus_demangle (mangled_name + skip_first, flags); if (result == NULL) - printf (mangled_name); + printf ("%s", mangled_name); else { if (mangled_name[0] == '.') putchar ('.'); - printf (result); + printf ("%s", result); free (result); } }