mirror of
https://github.com/vanilla-wiiu/vanilla.git
synced 2025-01-22 08:11:47 -05:00
removed extant slash
This commit is contained in:
parent
5c42244a4c
commit
fadb98429a
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ int create_socket(int *socket_out, uint16_t port)
|
|||
address.sin_addr.s_addr = INADDR_ANY;
|
||||
address.sin_port = htons(port);
|
||||
|
||||
int skt = socket(AF_INET, SOCK_DGRAM, 0);\
|
||||
int skt = socket(AF_INET, SOCK_DGRAM, 0);
|
||||
if (skt == -1) {
|
||||
print_info("FAILED TO CREATE SOCKET FOR PORT %i", port);
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue