Replace zero-length array decls with [].

C99 denotes variable-sized members with [], not [0].

Signed-off-by: Jason Riedy <ejr@cs.berkeley.edu>
This commit is contained in:
Jason Riedy
2005-08-23 13:31:09 -07:00
parent 2a29da7c6d
commit 6c5f9baa3b
5 changed files with 8 additions and 8 deletions

View File

@ -205,7 +205,7 @@ static int excluded(const char *pathname)
struct nond_on_fs {
int len;
char name[0];
char name[];
};
static struct nond_on_fs **dir;