summaryrefslogtreecommitdiff
path: root/shared/com_error.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:12:46 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:12:46 +0200
commitb338e29fd3eaf700f8c8360aa0310048ba941d54 (patch)
tree122f8ef3790d12cd10275ef7453a9e8053322d78 /shared/com_error.h
parent3.18 (diff)
downloadFreeFileSync-b338e29fd3eaf700f8c8360aa0310048ba941d54.tar.gz
FreeFileSync-b338e29fd3eaf700f8c8360aa0310048ba941d54.tar.bz2
FreeFileSync-b338e29fd3eaf700f8c8360aa0310048ba941d54.zip
3.19
Diffstat (limited to 'shared/com_error.h')
-rw-r--r--shared/com_error.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/com_error.h b/shared/com_error.h
index c3f7745b..909e04c1 100644
--- a/shared/com_error.h
+++ b/shared/com_error.h
@@ -60,7 +60,7 @@ inline
std::wstring numberToHexString(long number)
{
wchar_t result[100];
- swprintf(result, 100, L"0x%08x", number);
+ ::swprintf(result, 100, L"0x%08x", number);
return std::wstring(result);
}
bgstack15