From d6cdd80c8c58e6fa66f1796275616d045f16fad6 Mon Sep 17 00:00:00 2001 From: Markus Teich Date: Wed, 21 Sep 2016 15:02:03 +0200 Subject: [PATCH] minor style fix --- test_brandt.c | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/test_brandt.c b/test_brandt.c index 077f6f1..e56f076 100644 --- a/test_brandt.c +++ b/test_brandt.c @@ -137,15 +137,14 @@ cb_result (void *auction_closure, uint16_t *s = (uint16_t *)auction_closure; if (0 == results_len) - weprintf ("result determined by agent %d: none", *s); + weprintf ("result from agent %d: none", *s); for (uint16_t i = 0; i < results_len; i++) - weprintf ( - "result determined by agent %d: bidder %d got status %d with price %d", - *s, - results[i].bidder, - results[i].status, - results[i].price); + weprintf ("result from agent %d: bidder %d got status %d with price %d", + *s, + results[i].bidder, + results[i].status, + results[i].price); }