From 00c290e02edd6c906b669de9f31a45d14ed8bec0 Mon Sep 17 00:00:00 2001 From: paul Date: Sat, 26 Nov 2005 09:21:43 +0000 Subject: [c99] change gcc zero-length array to C99 flexible array declaration 2005-11-26 Paul Jakma * buffer.c: (struct buffer_data) change gcc zero array declaration to C99 incomplete array. * stream.h: (struct stream) same * ospf_api.c: (struct opaque_lsa) same --- lib/buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/buffer.c') diff --git a/lib/buffer.c b/lib/buffer.c index 81cd0f2a..f19a9e0c 100644 --- a/lib/buffer.c +++ b/lib/buffer.c @@ -53,7 +53,7 @@ struct buffer_data size_t sp; /* Actual data stream (variable length). */ - unsigned char data[0]; /* real dimension is buffer->size */ + unsigned char data[]; /* real dimension is buffer->size */ }; /* It should always be true that: 0 <= sp <= cp <= size */ -- cgit v1.2.3