Fixed typo

This commit is contained in:
Mark Qvist 2020-06-24 14:02:02 +02:00
parent d3ff2f207a
commit b996f38689
1 changed files with 1 additions and 1 deletions

2
TAP.c
View File

@ -46,7 +46,7 @@ int open_tap(void) {
int inet = socket(AF_INET, SOCK_DGRAM, 0);
if (inet == -1) {
perror("Could not open AF_INET socket\r\n");
perror("Could not open AF_INET socket");
cleanup();
exit(1);
} else {