diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-09-11 13:20:59 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-09-11 13:20:59 (GMT) |
commit | aa4c91c8385dab2f9ad53cdf6b7f6d855553679a (patch) | |
tree | caadb0616e1d66c7e41eccbedef8e5efb140bf36 /generic/tclIO.h | |
parent | 2061afedcc31ca00e6ff09dda489ca101e736339 (diff) | |
parent | 524b1d9fb207987cf66ca92d5198e30e27e0931e (diff) | |
download | tcl-aa4c91c8385dab2f9ad53cdf6b7f6d855553679a.zip tcl-aa4c91c8385dab2f9ad53cdf6b7f6d855553679a.tar.gz tcl-aa4c91c8385dab2f9ad53cdf6b7f6d855553679a.tar.bz2 |
Merge 8.7
Diffstat (limited to 'generic/tclIO.h')
-rw-r--r-- | generic/tclIO.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclIO.h b/generic/tclIO.h index 1fd6458..d12c02e 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. */ |