From b5b2cd3880cc2a67a2925465ee622bad8b986698 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Tue, 22 Apr 2008 17:48:22 -0700 Subject: [PATCH] Mark functions not meant to be exported as static. --- lib/ofp-print.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lib/ofp-print.c b/lib/ofp-print.c index 6742dfc6..4983f84f 100644 --- a/lib/ofp-print.c +++ b/lib/ofp-print.c @@ -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; -- 2.30.2