Fix a GCCism.

int foo[0];  // dodgy
int foo[];   // means the same, works the same and survives lint.

Tested by:	3 months of use on my laptop
This commit is contained in:
Mark Murray 2002-06-24 16:44:38 +00:00
parent a5a01740a0
commit f607758849

View File

@ -114,7 +114,7 @@ struct procsig {
struct pargs {
u_int ar_ref; /* Reference count. */
u_int ar_length; /* Length. */
u_char ar_args[0]; /* Arguments. */
u_char ar_args[]; /* Arguments. */
};
/*-