|
From: <sv...@va...> - 2014-10-22 20:35:35
|
Author: florian
Date: Wed Oct 22 21:35:27 2014
New Revision: 14655
Log:
Constify a variable.
Modified:
trunk/coregrind/m_debuginfo/readmacho.c
Modified: trunk/coregrind/m_debuginfo/readmacho.c
==============================================================================
--- trunk/coregrind/m_debuginfo/readmacho.c (original)
+++ trunk/coregrind/m_debuginfo/readmacho.c Wed Oct 22 21:35:27 2014
@@ -305,7 +305,7 @@
DiSym disym;
// "start_according_to_valgrind"
- static HChar* s_a_t_v = NULL; /* do not make non-static */
+ static const HChar* s_a_t_v = NULL; /* do not make non-static */
for (i = 0; i < symtab_count; i++) {
struct NLIST nl;
|