Remove redundant return statements.

This commit is contained in:
iphydf 2016-08-31 23:51:39 +01:00
parent 3a9300368d
commit 576f130615
No known key found for this signature in database
GPG Key ID: 3855DBA2D74403C9
3 changed files with 0 additions and 4 deletions

View File

@ -110,8 +110,6 @@ void print_public_key(const uint8_t *public_key)
}
write_log(LOG_LEVEL_INFO, "Public Key: %s\n", buffer);
return;
}
// Demonizes the process, appending PID to the PID file and closing file descriptors based on log backend

View File

@ -734,7 +734,6 @@ void kill_networking(Networking_Core *net)
}
free(net);
return;
}

View File

@ -82,7 +82,6 @@ void host_to_net(uint8_t *num, uint16_t numbytes)
memcpy(num, buff, numbytes);
#endif
return;
}
uint16_t lendian_to_host16(uint16_t lendian)