diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/util/profile/ChangeLog | 5 | ||||
| -rw-r--r-- | src/util/profile/prof_get.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/util/profile/ChangeLog b/src/util/profile/ChangeLog index 07df01cb3..e71809f9a 100644 --- a/src/util/profile/ChangeLog +++ b/src/util/profile/ChangeLog @@ -1,3 +1,8 @@ +2004-03-08 Ezra Peisach <epeisach@mit.edu> + + * prof_get.c (profile_parse_boolean): Declare first argument as + const char *. + 2004-02-19 Ken Raeburn <raeburn@mit.edu> * prof_init.c (prof_int32): If long is 4 bytes and int is not, diff --git a/src/util/profile/prof_get.c b/src/util/profile/prof_get.c index 0251e84e8..08fac7f06 100644 --- a/src/util/profile/prof_get.c +++ b/src/util/profile/prof_get.c @@ -283,7 +283,7 @@ static const char *const conf_no[] = { }; static errcode_t -profile_parse_boolean(char *s, int *ret_boolean) +profile_parse_boolean(const char *s, int *ret_boolean) { const char *const *p; |
