diff options
Diffstat (limited to 'plugins/BasicHistory/src/codecvt_CodePage.h')
-rw-r--r-- | plugins/BasicHistory/src/codecvt_CodePage.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/BasicHistory/src/codecvt_CodePage.h b/plugins/BasicHistory/src/codecvt_CodePage.h index 37b6b7d26f..c93a0fdf22 100644 --- a/plugins/BasicHistory/src/codecvt_CodePage.h +++ b/plugins/BasicHistory/src/codecvt_CodePage.h @@ -53,9 +53,9 @@ protected: _Mid2 = _First2;
int conv = WideCharToMultiByte(codePage, 0, _First1, _Last1 - _First1, _First2, _Last2 - _First2, NULL, NULL);
- if(conv == 0)
+ if (conv == 0)
{
- if(GetLastError() == ERROR_INSUFFICIENT_BUFFER)
+ if (GetLastError() == ERROR_INSUFFICIENT_BUFFER)
return (_Mybase::partial);
else
return (_Mybase::error);
|