diff options
author | Stephen D. Huston <shuston@apache.org> | 2008-11-03 23:15:49 +0000 |
---|---|---|
committer | Stephen D. Huston <shuston@apache.org> | 2008-11-03 23:15:49 +0000 |
commit | 95a5154a508d0e64e888aa948b8e4cfe9c581fe9 (patch) | |
tree | 0620a49c38b45140bd5c587dc449a9902e6c100d /cpp/src | |
parent | 207e51f7920cceded222ce3576f7625174f256b6 (diff) | |
download | qpid-python-95a5154a508d0e64e888aa948b8e4cfe9c581fe9.tar.gz |
Correct signature of usleep() method
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@710216 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/qpid/sys/windows/Time.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |