* [PATCH] Fix warning when building fs/afs/super.c
@ 2007-05-11 6:47 Tony Breeds
0 siblings, 0 replies; only message in thread
From: Tony Breeds @ 2007-05-11 6:47 UTC (permalink / raw)
To: Linux Kernel ML
Fix build waning in fs/afs/super.c
fs/afs/super.c: In function 'afs_parse_options':
fs/afs/super.c:153: warning: passing argument 2 of 'match_token' discards qualifiers from pointer target type
AFS declares it's match_table as const, which is discrded in lib/parser.c.
match_token() doesn't modify the table so making it const should be safe.
Signed-off-by: Tony Breeds <tony@bakeyournoodle.com>
---
include/linux/parser.h | 2 +-
lib/parser.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
Index: working/include/linux/parser.h
===================================================================
--- working.orig/include/linux/parser.h
+++ working/include/linux/parser.h
@@ -25,7 +25,7 @@ typedef struct {
char *to;
} substring_t;
-int match_token(char *, match_table_t table, substring_t args[]);
+int match_token(char *, const match_table_t table, substring_t args[]);
int match_int(substring_t *, int *result);
int match_octal(substring_t *, int *result);
int match_hex(substring_t *, int *result);
Index: working/lib/parser.c
===================================================================
--- working.orig/lib/parser.c
+++ working/lib/parser.c
@@ -100,7 +100,7 @@ static int match_one(char *s, const char
* format identifiers which will be taken into account when matching the
* tokens, and whose locations will be returned in the @args array.
*/
-int match_token(char *s, match_table_t table, substring_t args[])
+int match_token(char *s, const match_table_t table, substring_t args[])
{
const struct match_token *p;
Yours Tony
linux.conf.au http://linux.conf.au/ || http://lca2008.linux.org.au/
Jan 28 - Feb 02 2008 The Australian Linux Technical Conference!
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2007-05-11 6:47 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-05-11 6:47 [PATCH] Fix warning when building fs/afs/super.c Tony Breeds
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome