adium 3057:89b61030c40f: Cleaned off two incompatible pointer wa...

commits at adium.im commits at adium.im
Tue Dec 22 19:43:52 UTC 2009


details:	http://hg.adium.im/adium/rev/89b61030c40f
revision:	3057:89b61030c40f
author:		Archimedes Trajano <developer at trajano.net>
date:		Tue Sep 29 21:45:29 2009 -0400

Cleaned off two incompatible pointer warnings.

Reviewed and accepted by Stephen Holt <sholt at adium.im>. Fixes #13078.

diffs (15 lines):

diff -r 3066b0ccb207 -r 89b61030c40f Plugins/Purple Service/SLPurpleCocoaAdapter.m
--- a/Plugins/Purple Service/SLPurpleCocoaAdapter.m	Tue Dec 22 14:07:15 2009 -0500
+++ b/Plugins/Purple Service/SLPurpleCocoaAdapter.m	Tue Sep 29 21:45:29 2009 -0400
@@ -148,9 +148,9 @@
     return self;
 }
 
-static void ZombieKiller_Signal(SInt32 i)
+static void ZombieKiller_Signal(int i)
 {
-	SInt32 status;
+	int status;
 	pid_t child_pid;
 
 	while ((child_pid = waitpid(-1, &status, WNOHANG)) > 0);




More information about the commits mailing list