aboutsummaryrefslogtreecommitdiffstats
path: root/cache.h
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-08-29 12:41:03 -0700
committerJunio C Hamano <junkio@cox.net>2005-08-29 12:41:03 -0700
commit2c04662d89eaa55cecb6effd743c17051d1458ec (patch)
treeaa27bc3ebd317ed648b152ef92e00870d9b33414 /cache.h
parent10d781b9caa4f71495c7b34963bef137216f86a8 (diff)
downloadgit-2c04662d89eaa55cecb6effd743c17051d1458ec.tar.gz
Revert "Replace zero-length array decls with []."
This reverts 6c5f9baa3bc0d63e141e0afc23110205379905a4 commit, whose change breaks gcc-2.95. Not that I ignore portability to compilers that are properly C99, but keeping compilation with GCC working is more important, at least for now. We would probably end up declaring with "name[1]" and teach the allocator to subtract one if we really aimed for portability, but that is left for later rounds. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cache.h b/cache.h
index d407f39001..0dcd2fe53b 100644
--- a/cache.h
+++ b/cache.h
@@ -104,7 +104,7 @@ struct cache_entry {
unsigned int ce_size;
unsigned char sha1[20];
unsigned short ce_flags;
- char name[];
+ char name[0];
};
#define CE_NAMEMASK (0x0fff)
@@ -287,7 +287,7 @@ extern int checkout_entry(struct cache_entry *ce, struct checkout *state);
extern struct alternate_object_database {
struct alternate_object_database *next;
char *name;
- char base[]; /* more */
+ char base[0]; /* more */
} *alt_odb_list;
extern void prepare_alt_odb(void);
@@ -300,7 +300,7 @@ extern struct packed_git {
unsigned int pack_last_used;
unsigned int pack_use_cnt;
unsigned char sha1[20];
- char pack_name[]; /* something like ".git/objects/pack/xxxxx.pack" */
+ char pack_name[0]; /* something like ".git/objects/pack/xxxxx.pack" */
} *packed_git;
struct pack_entry {
@@ -315,7 +315,7 @@ struct ref {
unsigned char new_sha1[20];
unsigned char force;
struct ref *peer_ref; /* when renaming */
- char name[];
+ char name[0];
};
extern int git_connect(int fd[2], char *url, const char *prog);