diff options
author | Szczepan Zalega <szczepan.zalega@gmail.com> | 2016-03-05 15:18:44 +0100 |
---|---|---|
committer | Szczepan Zalega <szczepan.zalega@gmail.com> | 2016-03-05 15:18:44 +0100 |
commit | 4c511bc53788ada875fd0221b1cc3d4f8b269f91 (patch) | |
tree | 07caaf3aabbacb0a8736a0df1929ed19508ac323 /device.cc | |
parent | 7eb19add920b2e4d2bd9818cdfa3336ffc55e129 (diff) | |
download | libnitrokey-4c511bc53788ada875fd0221b1cc3d4f8b269f91.tar.gz libnitrokey-4c511bc53788ada875fd0221b1cc3d4f8b269f91.tar.bz2 |
cleaned up test.cc, added fixme comment
Diffstat (limited to 'device.cc')
-rw-r--r-- | device.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ CommError Device::recv(void *packet) { int retry_count = 0; Log::instance()(__PRETTY_FUNCTION__, Loglevel::DEBUG_L2); - std::this_thread::sleep_for( std::chrono::milliseconds(5000) ); + std::this_thread::sleep_for( std::chrono::milliseconds(5000) ); //FIXME remove timeout in favor of sync communication if (mp_devhandle == NULL) throw std::runtime_error("Attempted HID receive on an invalid descriptor."); |