diff options
| author | paul <paul> | 2005-11-26 09:21:43 +0000 | 
|---|---|---|
| committer | paul <paul> | 2005-11-26 09:21:43 +0000 | 
| commit | 00c290e02edd6c906b669de9f31a45d14ed8bec0 (patch) | |
| tree | 5d81084291d38b18144e6f53847026d24587b400 /lib/stream.h | |
| parent | 89368d9f8b70fef5c196db9055bd6a7e7aaa4f36 (diff) | |
[c99] change gcc zero-length array to C99 flexible array declaration
2005-11-26 Paul Jakma <paul.jakma@sun.com>
	* 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
Diffstat (limited to 'lib/stream.h')
| -rw-r--r-- | lib/stream.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stream.h b/lib/stream.h index 4753f8298f..564fa3ca62 100644 --- a/lib/stream.h +++ b/lib/stream.h @@ -103,7 +103,7 @@ struct stream    size_t getp; 		/* next get position */    size_t endp;		/* last valid data position */    size_t size;		/* size of data segment */ -  unsigned char data[0]; /* data pointer */ +  unsigned char data[]; /* data pointer */  };  /* First in first out queue structure. */  | 
