diff options
author | George Hazan <george.hazan@gmail.com> | 2015-06-11 20:28:17 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-06-11 20:28:17 +0000 |
commit | f31129c4bb9e3dd93abda029988639414afe1bc1 (patch) | |
tree | 56d8a78ba96b999d12297f3c2b004f2000e49614 | |
parent | fa03945af67e9e0e785db9ca8ea7b5c1463d66fe (diff) |
warning fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@14126 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | src/modules/utils/timezones.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/utils/timezones.cpp b/src/modules/utils/timezones.cpp index 961d6e6661..6cf2a9c0f6 100644 --- a/src/modules/utils/timezones.cpp +++ b/src/modules/utils/timezones.cpp @@ -458,7 +458,7 @@ void GetLocalizedString(HKEY hSubKey, const TCHAR *szName, wchar_t *szBuf, DWORD szBuf[min(dwLength / sizeof(TCHAR), cbLen - 1)] = 0;
}
-extern "C" __declspec(dllexport) void RecalculateTime(void)
+extern "C" void RecalculateTime(void)
{
GetTimeZoneInformation(&myInfo.myTZ.tzi);
myInfo.timestamp = time(NULL);
|