comparison nnchat.c @ 262:6d48fc4fd421

Shut up some trivial warnings.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 22 May 2011 02:11:32 +0300
parents 8a0f7446318e
children 5175ed15ffa4
comparison
equal deleted inserted replaced
261:0db02b8d2d11 262:6d48fc4fd421
422 va_end(ap); 422 va_end(ap);
423 } 423 }
424 424
425 void errorFunc(struct _nn_conn_t *conn, const char *fmt, va_list ap) 425 void errorFunc(struct _nn_conn_t *conn, const char *fmt, va_list ap)
426 { 426 {
427 (void) conn;
427 errorMsgV(fmt, ap); 428 errorMsgV(fmt, ap);
428 } 429 }
429 430
430 void messageFunc(struct _nn_conn_t *conn, const char *fmt, va_list ap) 431 void messageFunc(struct _nn_conn_t *conn, const char *fmt, va_list ap)
431 { 432 {
433 (void) conn;
432 printMsgV(TRUE, FALSE, fmt, ap); 434 printMsgV(TRUE, FALSE, fmt, ap);
433 } 435 }
434 436
435 437
436 BOOL checkIgnoreList(const char *name) 438 BOOL checkIgnoreList(const char *name)