diff options
author | Vincent Richard <[email protected]> | 2005-05-14 16:39:33 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-05-14 16:39:33 +0000 |
commit | 258cb132815bf329ca3025402ac0b74b0fc31fc8 (patch) | |
tree | 7220bb476b09e8eeaaf727d0739c203ad9aace4c /src/platforms/windows/windowsHandler.cpp | |
parent | Replaced getpid() with GetCurrentProcessId() on Windows. (diff) | |
download | vmime-258cb132815bf329ca3025402ac0b74b0fc31fc8.tar.gz vmime-258cb132815bf329ca3025402ac0b74b0fc31fc8.zip |
Oops... missing ')'.
Diffstat (limited to 'src/platforms/windows/windowsHandler.cpp')
-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 d4a9ecef..d6f28037 100644 --- a/src/platforms/windows/windowsHandler.cpp +++ b/src/platforms/windows/windowsHandler.cpp @@ -227,7 +227,7 @@ const vmime::string windowsHandler::getHostName() const const unsigned int windowsHandler::getProcessId() const { - return (static_cast <unsigned int>(::GetCurrentProcessId()); + return (static_cast <unsigned int>(::GetCurrentProcessId())); } |