diff libpurple/protocols/simple/simple.c @ 22551:c65c96e231b5

Printf warning fixes.
author Daniel Atallah <daniel.atallah@gmail.com>
date Thu, 27 Mar 2008 02:09:51 +0000
parents b6bf5a5f261b
children cc8903c59d6b 718a9c287839 69d54f84350a
line wrap: on
line diff
--- a/libpurple/protocols/simple/simple.c	Thu Mar 27 00:48:54 2008 +0000
+++ b/libpurple/protocols/simple/simple.c	Thu Mar 27 02:09:51 2008 +0000
@@ -947,7 +947,7 @@
 	while(tmp) {
 		struct transaction *trans = tmp->data;
 		tmp = tmp->next;
-		purple_debug_info("simple", "have open transaction age: %d\n", currtime- trans->time);
+		purple_debug_info("simple", "have open transaction age: %lu\n", currtime- trans->time);
 		if((currtime - trans->time > 5) && trans->retries >= 1) {
 			/* TODO 408 */
 		} else {