diff options
author | Vincent Richard <[email protected]> | 2013-05-12 15:31:15 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2013-05-12 15:31:15 +0000 |
commit | eb1e29811bbe9c791f4e9839a96fe9252a4a8f02 (patch) | |
tree | d0e005763bee3104de542748cb5322a0cd1d7627 | |
parent | Export class and functions in shared libraries. (diff) | |
download | vmime-eb1e29811bbe9c791f4e9839a96fe9252a4a8f02.tar.gz vmime-eb1e29811bbe9c791f4e9839a96fe9252a4a8f02.zip |
Lowered wait delay on Windows.
-rw-r--r-- | src/platforms/windows/windowsHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/platforms/windows/windowsHandler.cpp b/src/platforms/windows/windowsHandler.cpp index f306710f..9f663366 100644 --- a/src/platforms/windows/windowsHandler.cpp +++ b/src/platforms/windows/windowsHandler.cpp @@ -301,7 +301,7 @@ ref <vmime::utility::childProcessFactory> windowsHandler::getChildProcessFactory void windowsHandler::wait() const { - ::Sleep(1000); + ::Sleep(100); } |