From 95a5154a508d0e64e888aa948b8e4cfe9c581fe9 Mon Sep 17 00:00:00 2001 From: "Stephen D. Huston" Date: Mon, 3 Nov 2008 23:15:49 +0000 Subject: Correct signature of usleep() method git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@710216 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/sys/windows/Time.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpp/src/qpid/sys/windows') diff --git a/cpp/src/qpid/sys/windows/Time.cpp b/cpp/src/qpid/sys/windows/Time.cpp index 477a06656c..2390826831 100644 --- a/cpp/src/qpid/sys/windows/Time.cpp +++ b/cpp/src/qpid/sys/windows/Time.cpp @@ -80,7 +80,7 @@ void sleep(int secs) { ::Sleep(secs * 1000); } -void usleep(uint32_t usecs) { +void usleep(uint64_t usecs) { DWORD msecs = usecs / 1000; if (msecs == 0) msecs = 1; -- cgit v1.2.1