aboutsummaryrefslogtreecommitdiffstats
path: root/src/platforms/windows/windowsHandler.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2005-05-14 16:39:33 +0000
committerVincent Richard <[email protected]>2005-05-14 16:39:33 +0000
commit258cb132815bf329ca3025402ac0b74b0fc31fc8 (patch)
tree7220bb476b09e8eeaaf727d0739c203ad9aace4c /src/platforms/windows/windowsHandler.cpp
parentReplaced getpid() with GetCurrentProcessId() on Windows. (diff)
downloadvmime-258cb132815bf329ca3025402ac0b74b0fc31fc8.tar.gz
vmime-258cb132815bf329ca3025402ac0b74b0fc31fc8.zip
Oops... missing ')'.
Diffstat (limited to 'src/platforms/windows/windowsHandler.cpp')
-rw-r--r--src/platforms/windows/windowsHandler.cpp2
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()));
}