aboutsummaryrefslogtreecommitdiff
path: root/test_brandt.c
diff options
context:
space:
mode:
authorMarkus Teich <markus.teich@stusta.mhn.de>2016-09-21 15:02:03 +0200
committerMarkus Teich <markus.teich@stusta.mhn.de>2016-09-21 15:02:03 +0200
commitd6cdd80c8c58e6fa66f1796275616d045f16fad6 (patch)
tree624d157cc68c24f492e5e0f2d92653dabe360398 /test_brandt.c
parentb31da162a85e993e8bb4287db9b5d8bc6ef2e53f (diff)
minor style fix
Diffstat (limited to 'test_brandt.c')
-rw-r--r--test_brandt.c13
1 files 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);
}