Explorar el Código

removed unnecessary print statement

Fabio Arnold hace 10 años
padre
commit
072e16c802
Se han modificado 1 ficheros con 0 adiciones y 1 borrados
  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) {