From: root Date: Thu, 8 May 2008 01:19:24 +0000 (-0700) Subject: When printing flow expired messages, we should end the line with "\n" instead of... X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2faa2f778e0a33832b7859c3e6626784126687b;p=openvswitch When printing flow expired messages, we should end the line with "\n" instead of "n". --- diff --git a/lib/ofp-print.c b/lib/ofp-print.c index 142943fb..65404192 100644 --- a/lib/ofp-print.c +++ b/lib/ofp-print.c @@ -406,7 +406,7 @@ ofp_print_flow_expired(struct ds *string, const void *oh, size_t len, ofp_print_match(string, &ofe->match); ds_put_format(string, - " pri%"PRIu16" secs%"PRIu32" pkts%"PRIu64" bytes%"PRIu64"n", + " pri%"PRIu16" secs%"PRIu32" pkts%"PRIu64" bytes%"PRIu64"\n", ofe->match.wildcards ? ntohs(ofe->priority) : (uint16_t)-1, ntohl(ofe->duration), ntohll(ofe->packet_count), ntohll(ofe->byte_count));