X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/8040afa5ba915a022e28c0d61c81b773d4ed6686..c6c0449105c42313aac33e2dd619187a6d1cec8d:/client/util_posix.c diff --git a/client/util_posix.c b/client/util_posix.c index 382f6a60..dd3d714c 100644 --- a/client/util_posix.c +++ b/client/util_posix.c @@ -31,7 +31,7 @@ static void nsleep(uint64_t n) { } void msleep(uint32_t n) { - nsleep(1000000 * n); + nsleep(1000000 * (uint64_t)n); } #endif // _WIN32