summaryrefslogtreecommitdiffstats
path: root/generic/tclIO.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-09-11 12:56:29 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-09-11 12:56:29 (GMT)
commit524b1d9fb207987cf66ca92d5198e30e27e0931e (patch)
tree03481b58a31f0fcf82158c6c66891c88725e957f /generic/tclIO.h
parentf796d623675cfb8a59b1c190470f785c61b90a8e (diff)
parent7f62b768876fc8b0779d10ae3fcba1fc7aeaba04 (diff)
downloadtcl-524b1d9fb207987cf66ca92d5198e30e27e0931e.zip
tcl-524b1d9fb207987cf66ca92d5198e30e27e0931e.tar.gz
tcl-524b1d9fb207987cf66ca92d5198e30e27e0931e.tar.bz2
Merge 8.6. Remove tests/safe-stock86.test for win builds too (GIT, what are you doing ...!)
Diffstat (limited to 'generic/tclIO.h')
-rw-r--r--generic/tclIO.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclIO.h b/generic/tclIO.h
index d10f268..54aa5af 100644
--- a/generic/tclIO.h
+++ b/generic/tclIO.h
@@ -44,7 +44,7 @@ typedef struct ChannelBuffer {
int bufLength; /* How big is the buffer? */
struct ChannelBuffer *nextPtr;
/* Next buffer in chain. */
- char buf[1]; /* Placeholder for real buffer. The real
+ char buf[TCLFLEXARRAY]; /* Placeholder for real buffer. The real
* buffer occuppies this space + bufSize-1
* bytes. This must be the last field in the
* structure. */