aboutsummaryrefslogtreecommitdiffstats
path: root/vsnprintf.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-05-23 11:35:54 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-05-23 11:35:54 +0000
commite61955a60c37cc953aae0570d16b5f57f3974d29 (patch)
treeca7ffb87a300b3cc5bb96d2908b002a3d35115e1 /vsnprintf.c
parent92f8400d957165107e3b1633e1041ce8f07fe3f9 (diff)
downloadruby-e61955a60c37cc953aae0570d16b5f57f3974d29.tar.gz
unused member
* vsnprintf.c (__sFILE): _lbfsize is not used. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58853 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vsnprintf.c')
-rw-r--r--vsnprintf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/vsnprintf.c b/vsnprintf.c
index f5652e7cec..d221e757bf 100644
--- a/vsnprintf.c
+++ b/vsnprintf.c
@@ -175,7 +175,9 @@ typedef struct __sFILE {
short _flags; /* flags, below; this FILE is free if 0 */
short _file; /* fileno, if Unix descriptor, else -1 */
struct __sbuf _bf; /* the buffer (at least 1 byte, if !NULL) */
+#if 0
size_t _lbfsize; /* 0 or -_bf._size, for inline putc */
+#endif
int (*vwrite)(/* struct __sFILE*, struct __suio * */);
const char *(*vextra)(/* struct __sFILE*, size_t, void*, long*, int */);
} FILE;