]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fix up another char-signedness straggler.
authorJulian Seward <jseward@acm.org>
Thu, 22 Nov 2012 10:48:20 +0000 (10:48 +0000)
committerJulian Seward <jseward@acm.org>
Thu, 22 Nov 2012 10:48:20 +0000 (10:48 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13133

coregrind/m_stacktrace.c

index c64cb1abea7893566a1a1e4c6f7e48b4789c4375..0c2da2280a14b3b07957cadad03fb8f48763e6c0 100644 (file)
@@ -480,7 +480,7 @@ UInt VG_(get_StackTrace_wrk) ( ThreadId tid_if_known,
    lr_is_first_RA = False;
    {
 #     define M_VG_ERRTXT 1000
-      UChar buf_lr[M_VG_ERRTXT], buf_ip[M_VG_ERRTXT];
+      HChar buf_lr[M_VG_ERRTXT], buf_ip[M_VG_ERRTXT];
       /* The following conditional looks grossly inefficient and
          surely could be majorly improved, with not much effort. */
       if (VG_(get_fnname_raw) (lr, buf_lr, M_VG_ERRTXT))