mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 15:40:32 -04:00
- Remove useless target (install is default) in depends PR: ports/93094 Reported by: TANABE Hiroyasu <h@cosat.com>, John <freebsd@moe.co.uk> Submitted by: maintainer
11 lines
363 B
C
11 lines
363 B
C
--- lib/buffer.c.orig Fri Feb 3 13:24:03 2006
|
|
+++ lib/buffer.c Fri Feb 3 13:24:15 2006
|
|
@@ -53,7 +53,7 @@
|
|
size_t sp;
|
|
|
|
/* Actual data stream (variable length). */
|
|
- unsigned char data[]; /* real dimension is buffer->size */
|
|
+ unsigned char data[0]; /* real dimension is buffer->size */
|
|
};
|
|
|
|
/* It should always be true that: 0 <= sp <= cp <= size */
|