From: Justin Pettit Date: Wed, 7 May 2008 22:35:53 +0000 (-0700) Subject: Fixed problem where the first line of a stats reply message was not showing up on... X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=befb4cbdc31a20dd721ef43eaefc3d1b23521c2e;p=openvswitch Fixed problem where the first line of a stats reply message was not showing up on its own line. --- diff --git a/lib/ofp-print.c b/lib/ofp-print.c index b875ec41..142943fb 100644 --- a/lib/ofp-print.c +++ b/lib/ofp-print.c @@ -642,7 +642,7 @@ print_stats(struct ds *string, int type, const void *body, size_t body_len, return; } s = &stats_types[type]; - ds_put_format(string, " type=%d(%s)", type, s->name); + ds_put_format(string, " type=%d(%s)\n", type, s->name); m = direction == REQUEST ? &s->request : &s->reply; if (body_len < m->min_body || body_len > m->max_body) {