diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-06-17 00:21:58 +0000 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-06-17 00:21:58 +0000 |
commit | 37afa876a72344fdfc8091db8d292af2f796c77c (patch) | |
tree | edc082a11a0a74222be693a9747066e63562ad17 /osdep/Phy.hpp | |
parent | 601c51b351fc097c27aef9be8f5471099fffeb3a (diff) | |
download | infinitytier-37afa876a72344fdfc8091db8d292af2f796c77c.tar.gz infinitytier-37afa876a72344fdfc8091db8d292af2f796c77c.zip |
Linux bug fixes, small controller fix.
Diffstat (limited to 'osdep/Phy.hpp')
-rw-r--r-- | osdep/Phy.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/osdep/Phy.hpp b/osdep/Phy.hpp index 1b08f30a..eab8a317 100644 --- a/osdep/Phy.hpp +++ b/osdep/Phy.hpp @@ -871,7 +871,7 @@ public: #if defined(_WIN32) || defined(_WIN64) ::recv(_whackReceiveSocket,tmp,16,0); #else - (void)(::read(_whackReceiveSocket,tmp,16)); + ::read(_whackReceiveSocket,tmp,16); #endif } |