Remove unncessary return statements

This commit is contained in:
Miroslav Lichvar
2013-05-21 14:29:22 +02:00
parent d510154ba2
commit 359d444343
26 changed files with 0 additions and 176 deletions

View File

@@ -259,8 +259,6 @@ NIO_Initialise(int family)
) {
LOG_FATAL(LOGF_NtpIO, "Could not open any NTP socket");
}
return;
}
/* ================================================== */
@@ -281,7 +279,6 @@ NIO_Finalise(void)
sock_fd6 = -1;
#endif
initialised = 0;
return;
}
/* ================================================== */
@@ -394,8 +391,6 @@ read_from_socket(void *anything)
}
}
return;
}
/* ================================================== */
@@ -510,8 +505,6 @@ send_packet(void *packet, int packetlen, NTP_Remote_Address *remote_addr)
LOG(LOGS_WARN, LOGF_NtpIO, "Could not send to %s:%d : %s",
UTI_IPToString(&remote_addr->ip_addr), remote_addr->port, strerror(errno));
}
return;
}
/* ================================================== */