summaryrefslogtreecommitdiff
path: root/shared/com_error.h
diff options
context:
space:
mode:
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