summaryrefslogtreecommitdiff
path: root/diff-delta.c
diff options
context:
space:
mode:
authorFlorian Forster <octo@verplant.org>2006-06-18 15:18:04 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-06-19 04:19:09 (GMT)
commit63f175693e46c8e1562e68a40086ec864f43886b (patch)
treec4543f44bde5386fd2bb269c6b7c0a15bc4bae34 /diff-delta.c
parentcfd432e63d77478d913497a62827ed95c56dda73 (diff)
downloadgit-63f175693e46c8e1562e68a40086ec864f43886b.zip
git-63f175693e46c8e1562e68a40086ec864f43886b.tar.gz
git-63f175693e46c8e1562e68a40086ec864f43886b.tar.bz2
Initialize FAMs using `FLEX_ARRAY'.
When initializing a `flexible array member' the macro `FLEX_ARRAY' should be used. This was forgotten in `diff-delta.c'. Signed-off-by: Florian Forster <octo@verplant.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'diff-delta.c')
-rw-r--r--diff-delta.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/diff-delta.c b/diff-delta.c
index 25a798d..74486b1 100644
--- a/diff-delta.c
+++ b/diff-delta.c
@@ -22,6 +22,7 @@
#include <string.h>
#include "delta.h"
+#include "git-compat-util.h"
/* maximum hash entry list for the same hash bucket */
#define HASH_LIMIT 64
@@ -131,7 +132,7 @@ struct delta_index {
const void *src_buf;
unsigned long src_size;
unsigned int hash_mask;
- struct index_entry *hash[0];
+ struct index_entry *hash[FLEX_ARRAY];
};
struct delta_index * create_delta_index(const void *buf, unsigned long bufsize)