From 9ccf76a246b93ed7d5f4dd5619e79c01b15a7f05 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 1 Aug 2009 10:07:24 -0700 Subject: Polish debugpred code a bit. --- src/debugpred.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/debugpred.h') 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) -- cgit v1.2.1