mirror of
https://github.com/wiiu-env/WiiUModuleSystem.git
synced 2026-08-24 17:34:03 -05:00
Format the code via clang-format
This commit is contained in:
@@ -10,7 +10,7 @@ static int __wut_socket_devoptab_added = 0;
|
||||
extern void socket_lib_init();
|
||||
|
||||
void __attribute__((weak)) __init_wut_socket() {
|
||||
if(!&__wut_socket_init_devoptab) return;
|
||||
if (!&__wut_socket_init_devoptab) return;
|
||||
if (!__wut_socket_devoptab_added) {
|
||||
socket_lib_init();
|
||||
__wut_socket_init_devoptab();
|
||||
@@ -19,7 +19,7 @@ void __attribute__((weak)) __init_wut_socket() {
|
||||
}
|
||||
|
||||
void __attribute__((weak)) __fini_wut_socket() {
|
||||
if(!&__wut_socket_init_devoptab || !&__wut_socket_fini_devoptab) return;
|
||||
if (!&__wut_socket_init_devoptab || !&__wut_socket_fini_devoptab) return;
|
||||
if (__wut_socket_devoptab_added) {
|
||||
__wut_socket_fini_devoptab();
|
||||
__wut_socket_devoptab_added = 0;
|
||||
|
||||
Reference in New Issue
Block a user