diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2009-11-13 20:09:55 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2009-11-13 20:09:55 +0000 |
commit | 05b6afeb4021eb2e6f9fc778b0fc22ae6786a00d (patch) | |
tree | 3c5ddeb4cc99eb2a5258b491843a97c0267166c2 /usr.sbin/ripctl/parser.h | |
parent | 4c10f81d590394179fc04542a88a8ec568b448cb (diff) |
Don't use [] in function arguments when dealing with arrays
we don't know the size of, otherwise gcc >= 4 will error.
ok markus@ deraadt@
Diffstat (limited to 'usr.sbin/ripctl/parser.h')
-rw-r--r-- | usr.sbin/ripctl/parser.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ripctl/parser.h b/usr.sbin/ripctl/parser.h index fa471da57a6..c26c9ae13f4 100644 --- a/usr.sbin/ripctl/parser.h +++ b/usr.sbin/ripctl/parser.h @@ -1,4 +1,4 @@ -/* $OpenBSD: parser.h,v 1.2 2009/11/02 20:29:17 claudio Exp $ */ +/* $OpenBSD: parser.h,v 1.3 2009/11/13 20:09:54 jsg Exp $ */ /* * Copyright (c) 2006 Michele Marchetto <mydecay@openbeer.it> @@ -50,8 +50,8 @@ struct parse_result { }; struct parse_result *parse(int, char *[]); -const struct token *match_token(const char *, const struct token []); -void show_valid_args(const struct token []); +const struct token *match_token(const char *, const struct token *); +void show_valid_args(const struct token *); int parse_addr(const char *, struct in_addr *); int parse_prefix(const char *, struct in_addr *, u_int8_t *); |