diff options
author | i404788 <50617709+i404788@users.noreply.github.com> | 2019-12-12 09:03:01 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-12 09:03:01 +0000 |
commit | 295404a5a696c158df2ddf9b9548c0a4b8c368c6 (patch) | |
tree | 4d2df5465c3da9fd83c7846fb8ea62e003c5c48d /src | |
parent | 7730e6c1e2086db4c73ecebaa140ca45c1383a9f (diff) |
Fix weird spacing
Diffstat (limited to 'src')
-rw-r--r-- | src/libui_sdl/LAN_PCap.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libui_sdl/LAN_PCap.cpp b/src/libui_sdl/LAN_PCap.cpp index 312af0e..44af0a3 100644 --- a/src/libui_sdl/LAN_PCap.cpp +++ b/src/libui_sdl/LAN_PCap.cpp @@ -263,12 +263,12 @@ bool Init(bool open_adapter) continue; } - if (!curaddr->ifa_addr) - { - printf("Device (%s) does not have an address :/\n", curaddr->ifa_name); - curaddr = curaddr->ifa_next; - continue; - } + if (!curaddr->ifa_addr) + { + printf("Device (%s) does not have an address :/\n", curaddr->ifa_name); + curaddr = curaddr->ifa_next; + continue; + } u16 af = curaddr->ifa_addr->sa_family; if (af == AF_INET) |