diff options
author | Jason Riedy <ejr@cs.berkeley.edu> | 2005-08-23 13:31:09 -0700 |
---|---|---|
committer | Jason Riedy <ejr@cs.berkeley.edu> | 2005-08-23 20:41:11 -0700 |
commit | 6c5f9baa3bc0d63e141e0afc23110205379905a4 (patch) | |
tree | 3fd2a88512168179a81756768f444ecf3ccd23d6 /ls-files.c | |
parent | 2a29da7c6d6103c4719c71f6cce88e853260912c (diff) | |
download | git-6c5f9baa3bc0d63e141e0afc23110205379905a4.tar.gz |
Replace zero-length array decls with [].
C99 denotes variable-sized members with [], not [0].
Signed-off-by: Jason Riedy <ejr@cs.berkeley.edu>
Diffstat (limited to 'ls-files.c')
-rw-r--r-- | ls-files.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ls-files.c b/ls-files.c index 2c7aada88c..56f3919e06 100644 --- a/ls-files.c +++ b/ls-files.c @@ -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; |