diff options
author | i404788 <50617709+i404788@users.noreply.github.com> | 2019-11-19 22:20:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-19 22:20:39 +0000 |
commit | cdd60bb29822736bc7e0a0a3469e1aed33052e00 (patch) | |
tree | e219c4cd2ccf156e93fe45008f65ce9e50f9f161 /src | |
parent | 7e07250652260657b0a78d66c556d6edc1175b27 (diff) |
fix build
Diffstat (limited to 'src')
-rw-r--r-- | src/libui_sdl/LAN_PCap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libui_sdl/LAN_PCap.cpp b/src/libui_sdl/LAN_PCap.cpp index 0682e61..e407866 100644 --- a/src/libui_sdl/LAN_PCap.cpp +++ b/src/libui_sdl/LAN_PCap.cpp @@ -257,7 +257,7 @@ bool Init(bool open_adapter) struct ifaddrs* curaddr = addrs; while (curaddr) { - if (strcmp(curaddr->ifa_name, adata->DeviceName) + if (strcmp(curaddr->ifa_name, adata->DeviceName)) { curaddr = curaddr->ifa_next; continue; |