Fix openflow.h compilation with GCC 2.95.
authorBen Pfaff <blp@cs.stanford.edu>
Sat, 26 Apr 2008 18:03:54 +0000 (11:03 -0700)
committerBen Pfaff <blp@nicira.com>
Tue, 29 Apr 2008 17:19:36 +0000 (10:19 -0700)
Necessary because older Linux 2.4 releases will only compile with GCC 2.95.

include/openflow.h

index d93a6229b61ca18eda341c11637754918d1d7e9e..f3f533c3c1259f38f2123529170a03435ead303f 100644 (file)
@@ -419,7 +419,7 @@ struct ofp_table_stats {
 /* Current table statistics reply */
 struct ofp_table_stats_reply {
     struct ofp_header header;
-    struct ofp_table_stats tables[]; /* The number of entries is inferred from
+    struct ofp_table_stats tables[0]; /* The number of entries is inferred from
                                         the length field in the header. */
 };
 
@@ -440,7 +440,7 @@ struct ofp_port_stats_request {
 /* Current port statistics reply */
 struct ofp_port_stats_reply {
     struct ofp_header header;
-    struct ofp_port_stats ports[]; /* The number of entries is inferred from
+    struct ofp_port_stats ports[0]; /* The number of entries is inferred from
                                       the length field in the header. */
 };