Browse Source

removed unnecessary print statement

Fabio Arnold 9 years ago
parent
commit
072e16c802
1 changed files with 0 additions and 1 deletions
  1. 0 1
      native/bind.c

+ 0 - 1
native/bind.c

@@ -86,7 +86,6 @@ int net_sock(int type, int port) {
 		perror("Unable to bind net socket");
 		return -1;
 	}
-	printf("Hello from the new port binder\n");
 
 	if (type == 1) { // TCP
 		if (listen(fd, 5) == -1) {