diff options
| author | Vincent Richard <[email protected]> | 2013-03-24 12:30:26 +0100 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2013-03-24 12:30:26 +0100 |
| commit | 21945be4c4ef822b7dc5f6ded80027bd5437ce9d (patch) | |
| tree | 4302bdee8d07b52be8aa13a4618104e9503e4b10 /src/platforms/windows/windowsHandler.cpp | |
| parent | OpenSSL library already mentioned in Required.private, don't need to be speci... (diff) | |
| download | vmime-21945be4c4ef822b7dc5f6ded80027bd5437ce9d.tar.gz vmime-21945be4c4ef822b7dc5f6ded80027bd5437ce9d.zip | |
Fixed warnings and 64-bit issues.
Diffstat (limited to 'src/platforms/windows/windowsHandler.cpp')
| -rw-r--r-- | src/platforms/windows/windowsHandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/platforms/windows/windowsHandler.cpp b/src/platforms/windows/windowsHandler.cpp index 99b52cdf..f306710f 100644 --- a/src/platforms/windows/windowsHandler.cpp +++ b/src/platforms/windows/windowsHandler.cpp @@ -71,9 +71,9 @@ windowsHandler::~windowsHandler() } -unsigned int windowsHandler::getUnixTime() const +unsigned long windowsHandler::getUnixTime() const { - return static_cast <unsigned int>(::time(NULL)); + return static_cast <unsigned long>(::time(NULL)); } |
