]> granicus.if.org Git - jq/commitdiff
Fix -Wzero-length-array
authorDavid Tolnay <dtolnay@gmail.com>
Sun, 16 Aug 2015 16:11:23 +0000 (09:11 -0700)
committerDavid Tolnay <dtolnay@gmail.com>
Sun, 16 Aug 2015 16:11:23 +0000 (09:11 -0700)
execute.c

index 6a94a442808846396b730406d7a6c4e0f41d2686..1a84f4c4c6a2196ecaeff29a5dc3e1eb4f0ebee8 100644 (file)
--- a/execute.c
+++ b/execute.c
@@ -64,7 +64,7 @@ struct frame {
   stack_ptr env;            // jq stack address of frame to return to
   stack_ptr retdata;        // jq stack address to unwind to on RET
   uint16_t* retaddr;        // jq bytecode return address
-  union frame_entry entries[0]; // nclosures + nlocals
+  union frame_entry entries[]; // nclosures + nlocals
 };
 
 static int frame_size(struct bytecode* bc) {