diff options
author | Roland McGrath <roland@gnu.org> | 1999-11-21 04:26:59 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-11-21 04:26:59 +0000 |
commit | 1b37af7bea88b39507bbfd370050c9db45ac4c15 (patch) | |
tree | f90a785dccca646daf46058ea749d8c415e0ad8f /utils | |
parent | 755c7f72743a52a5a7e4f838f328d584a6cacc23 (diff) |
1999-11-20 Roland McGrath <roland@baalperazim.frob.com>
* storeinfo.c (print_store: pstr): Add const to parameter type.
Diffstat (limited to 'utils')
-rw-r--r-- | utils/storeinfo.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/storeinfo.c b/utils/storeinfo.c index b824c263..638cebc7 100644 --- a/utils/storeinfo.c +++ b/utils/storeinfo.c @@ -1,8 +1,8 @@ /* Show where a file exists - Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1995,96,97,98,99 Free Software Foundation, Inc. - Written by Miles Bader <miles@gnu.ai.mit.edu> + Written by Miles Bader <miles@gnu.org> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -91,7 +91,7 @@ print_store (struct store *store, int level, unsigned what) putchar (' '); } } - void pstr (char *str, unsigned mask) + void pstr (const char *str, unsigned mask) { if ((what & mask) == mask) { |