Skip to content
Snippets Groups Projects
Commit 77a8872f authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard
Browse files

oleaut32: Make constant 'szAccept' static.

parent 2e758ea8
Branches
Tags
No related merge requests found
......@@ -6522,7 +6522,7 @@ static HRESULT VARIANT_BstrFromReal(DOUBLE dblIn, LCID lcid, ULONG dwFlags,
*/
if (buff[0] == '-')
{
const WCHAR szAccept[] = {'0', '.', '\0'};
static const WCHAR szAccept[] = {'0', '.', '\0'};
if (strlenW(buff + 1) == strspnW(buff + 1, szAccept))
{ buff[0] = '0'; buff[1] = '\0'; }
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment