You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by pn...@apache.org on 2012/12/10 12:57:12 UTC

svn commit: r1419361 - /incubator/celix/trunk/remote_shell/private/src/connection_listener.c

Author: pnoltes
Date: Mon Dec 10 11:57:11 2012
New Revision: 1419361

URL: http://svn.apache.org/viewvc?rev=1419361&view=rev
Log:
CELIX-44: corrected a printf statement for a apr_int64_t

Modified:
    incubator/celix/trunk/remote_shell/private/src/connection_listener.c

Modified: incubator/celix/trunk/remote_shell/private/src/connection_listener.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/remote_shell/private/src/connection_listener.c?rev=1419361&r1=1419360&r2=1419361&view=diff
==============================================================================
--- incubator/celix/trunk/remote_shell/private/src/connection_listener.c (original)
+++ incubator/celix/trunk/remote_shell/private/src/connection_listener.c Mon Dec 10 11:57:11 2012
@@ -149,7 +149,7 @@ static void* APR_THREAD_FUNC connection_
 		apr_strerror(status, error, 64);
     	printf("Error creating and listing on socket: %s\n", error);
     } else {
-    	printf("Remote Shell accepting connections on port %i\n", instance->port);
+    	printf("Remote Shell accepting connections on port %lld\n", instance->port);
     }
 
 	while (status == CELIX_SUCCESS) {