From: Ulrich Drepper Date: Sat, 1 Aug 2009 17:07:24 +0000 (-0700) Subject: Polish debugpred code a bit. X-Git-Tag: elfutils-0.143~38 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9ccf76a246b93ed7d5f4dd5619e79c01b15a7f05;p=thirdparty%2Felfutils.git Polish debugpred code a bit. --- diff --git a/src/ChangeLog b/src/ChangeLog index 7e0b25b71..19e034ae1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2009-08-01 Ulrich Drepper + + * debugpred.h: Add two most const. + 2009-07-26 Mark Wielaard * elflint.c (check_note_data): Recognize NT_GNU_GOLD_VERSION. diff --git a/src/debugpred.h b/src/debugpred.h index 867f4ace3..41d46796a 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)