aboutsummaryrefslogtreecommitdiff
path: root/brandt.h
diff options
context:
space:
mode:
authorMarkus Teich <markus.teich@stusta.mhn.de>2016-08-19 22:24:49 +0200
committerMarkus Teich <markus.teich@stusta.mhn.de>2016-08-19 22:24:49 +0200
commit0a2c2fba3fbd6809013dd2607707dbe99c4dc4b8 (patch)
treee797b159a9ad956f14e17c2404a44f3bbce5d3af /brandt.h
parent4ecb428b284e24b72d0551356d3460f086f62e27 (diff)
downloadlibbrandt-0a2c2fba3fbd6809013dd2607707dbe99c4dc4b8.tar.gz
libbrandt-0a2c2fba3fbd6809013dd2607707dbe99c4dc4b8.zip
fix warnings
Diffstat (limited to 'brandt.h')
-rw-r--r--brandt.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/brandt.h b/brandt.h
index 385d67b..9487e06 100644
--- a/brandt.h
+++ b/brandt.h
@@ -216,16 +216,17 @@ BRANDT_new (BRANDT_CbResult result,
216 216
217/** 217/**
218 * This function must be called when bidding after receipt of the start 218 * This function must be called when bidding after receipt of the start
219 * notification. 219 * notification from the seller.
220 * 220 *
221 * @param[in] auction The pointer returned by BRANDT_join(). 221 * @param[in] auction The pointer returned by BRANDT_join().
222 * @param[in] n The amount of bidders (from the start announcement message). 222 * @param[in] n The amount of bidders (from the start announcement message).
223 void 223 */
224 BRANDT_start (struct BRANDT_Auction *auction, 224void
225BRANDT_start (struct BRANDT_Auction *auction,
225 uint16_t n); 226 uint16_t n);
226 227
227 228
228 /** 229/**
229 * Clean up this auction on shutdown. 230 * Clean up this auction on shutdown.
230 * 231 *
231 * @param[in] auction The pointer returned by BRANDT_join() or BRANDT_new(). 232 * @param[in] auction The pointer returned by BRANDT_join() or BRANDT_new().