|
From: <sv...@va...> - 2014-11-05 19:46:29
|
Author: weidendo
Date: Wed Nov 5 19:46:21 2014
New Revision: 14693
Log:
Compile (arm). Fix typo from r14664
Modified:
trunk/coregrind/m_stacktrace.c
Modified: trunk/coregrind/m_stacktrace.c
==============================================================================
--- trunk/coregrind/m_stacktrace.c (original)
+++ trunk/coregrind/m_stacktrace.c Wed Nov 5 19:46:21 2014
@@ -824,7 +824,7 @@
HChar buf_a1_copy[VG_(strlen)(buf_a1) + 1];
VG_(strcpy)(buf_a1_copy, buf_a1);
if (VG_(get_fnname_raw) (a2, &buf_a2))
- if (VG_(strcmp)(buf_a1_copy1, buf_a2))
+ if (VG_(strcmp)(buf_a1_copy, buf_a2))
return True;
}
return False;
|