dovecot-2.1: Compiler warning fixes

dovecot at dovecot.org dovecot at dovecot.org
Tue May 8 08:49:53 EEST 2012


details:   http://hg.dovecot.org/dovecot-2.1/rev/328a3cd837f8
changeset: 14518:328a3cd837f8
user:      Timo Sirainen <tss at iki.fi>
date:      Tue May 08 08:49:47 2012 +0300
description:
Compiler warning fixes

diffstat:

 src/lib/test-bsearch-insert-pos.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (16 lines):

diff -r cb80c575b00c -r 328a3cd837f8 src/lib/test-bsearch-insert-pos.c
--- a/src/lib/test-bsearch-insert-pos.c	Tue May 08 08:31:27 2012 +0300
+++ b/src/lib/test-bsearch-insert-pos.c	Tue May 08 08:49:47 2012 +0300
@@ -13,9 +13,9 @@
 void test_bsearch_insert_pos(void)
 {
 	static const unsigned int input[] = {
-		1, 5, 9, 15, 16, -1,
-		1, 5, 9, 15, 16, 17, -1,
-		-1
+		1, 5, 9, 15, 16, -1U,
+		1, 5, 9, 15, 16, 17, -1U,
+		-1U
 	};
 	static const unsigned int max_key = 18;
 	const unsigned int *cur;


More information about the dovecot-cvs mailing list