Mark functions not meant to be exported as static.
authorBen Pfaff <blp@cs.stanford.edu>
Wed, 23 Apr 2008 00:48:22 +0000 (17:48 -0700)
committerBen Pfaff <blp@cs.stanford.edu>
Wed, 23 Apr 2008 00:48:22 +0000 (17:48 -0700)
lib/ofp-print.c

index 6742dfc65939c9e1f2b43461f7f70d066598d283..4983f84f7628bd2269858a36d71875fcd54a8486 100644 (file)
@@ -396,8 +396,9 @@ ofp_print_flow_mod(struct ds *string, const void *oh, size_t len,
 
 /* Pretty-print the OFPT_FLOW_EXPIRED packet of 'len' bytes at 'oh' to 'string'
  * at the given 'verbosity' level. */
-void ofp_print_flow_expired(struct ds *string, const void *oh, size_t len, 
-        int verbosity)
+static void
+ofp_print_flow_expired(struct ds *string, const void *oh, size_t len, 
+                       int verbosity)
 {
     const struct ofp_flow_expired *ofe = oh;
 
@@ -409,8 +410,9 @@ void ofp_print_flow_expired(struct ds *string, const void *oh, size_t len,
 
 /* Pretty-print the OFPT_PORT_STATUS packet of 'len' bytes at 'oh' to 'string'
  * at the given 'verbosity' level. */
-void ofp_print_port_status(struct ds *string, const void *oh, size_t len, 
-        int verbosity)
+static void
+ofp_print_port_status(struct ds *string, const void *oh, size_t len, 
+                      int verbosity)
 {
     const struct ofp_port_status *ops = oh;