summaryrefslogtreecommitdiff
path: root/upb/bytestream.h
diff options
context:
space:
mode:
Diffstat (limited to 'upb/bytestream.h')
-rw-r--r--upb/bytestream.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/upb/bytestream.h b/upb/bytestream.h
index 409ae80..fe049d2 100644
--- a/upb/bytestream.h
+++ b/upb/bytestream.h
@@ -372,7 +372,8 @@ INLINE int upb_bytesink_putc(upb_bytesink *sink, char ch) {
}
INLINE int upb_bytesink_putrepeated(upb_bytesink *sink, char ch, int len) {
- for (int i = 0; i < len; i++)
+ int i;
+ for (i = 0; i < len; i++)
if (upb_bytesink_write(sink, &ch, 1) < 0)
return -1;
return len;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback