summaryrefslogtreecommitdiff
path: root/src/debugpred.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2009-08-01 10:07:24 -0700
committerUlrich Drepper <drepper@redhat.com>2009-08-01 10:07:24 -0700
commit9ccf76a246b93ed7d5f4dd5619e79c01b15a7f05 (patch)
tree50b0a2ed4e2d559e01f8d8f5946afd7a6005cd89 /src/debugpred.h
parent2f5b79e9348c651604795452fb4831964b3917b1 (diff)
downloadelfutils-9ccf76a246b93ed7d5f4dd5619e79c01b15a7f05.tar.gz
Polish debugpred code a bit.
Diffstat (limited to 'src/debugpred.h')
-rw-r--r--src/debugpred.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/debugpred.h b/src/debugpred.h
index 867f4ace..41d46796 100644
--- a/src/debugpred.h
+++ b/src/debugpred.h
@@ -30,7 +30,7 @@
extern const unsigned long int __start_predict_data;
extern const unsigned long int __stop_predict_data;
extern const unsigned long int __start_predict_line;
-extern const char *__start_predict_file;
+extern const char *const __start_predict_file;
static void
__attribute__ ((destructor))
@@ -39,7 +39,7 @@ predprint (void)
const unsigned long int *s = &__start_predict_data;
const unsigned long int *e = &__stop_predict_data;
const unsigned long int *sl = &__start_predict_line;
- const char **sf = &__start_predict_file;
+ const char *const *sf = &__start_predict_file;
while (s < e)
{
if (s[0] != 0 || s[1] != 0)