X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/58c00ce7fcfcd29a304117a7f2c616aa1458a361..bf8243475b51549bbf68a505ff6dd5c5a4a28de4:/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