Commit 24eee19b authored by Alexandre Julliard's avatar Alexandre Julliard

mapi32: Get rid of unneeded CharNextA call.

parent b5953831
...@@ -656,7 +656,7 @@ UINT WINAPI UFromSz(LPCSTR lpszStr) ...@@ -656,7 +656,7 @@ UINT WINAPI UFromSz(LPCSTR lpszStr)
while (*lpszStr >= '0' && *lpszStr <= '9') while (*lpszStr >= '0' && *lpszStr <= '9')
{ {
ulRet = ulRet * 10 + (*lpszStr - '0'); ulRet = ulRet * 10 + (*lpszStr - '0');
lpszStr = CharNextA(lpszStr); lpszStr++;
} }
} }
return ulRet; return ulRet;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment