libcxxrt: fix demangling of wchar_t

'wchar_t' is 7 characters long, not 6. r303297 fixed this in libelftc,
but not the second copy of this file that we have in libcxxrt.

PR:		208661
Submitted by:	Daniel McRobb
Obtained from:	ELF Tool Chain r3480
MFC after:	3 days
This commit is contained in:
Ed Maste 2016-07-27 17:18:08 +00:00
parent 3ac8f842ea
commit 0fe768778d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=303400

View File

@ -2842,7 +2842,7 @@ cpp_demangle_read_type(struct cpp_demangle_data *ddata, int delimit)
case 'w':
/* wchar_t */
if (!cpp_demangle_push_str(ddata, "wchar_t", 6))
if (!cpp_demangle_push_str(ddata, "wchar_t", 7))
goto clean;
++ddata->cur;
goto rtn;