Autosyncing with Wine HEAD

svn path=/trunk/; revision=27908
This commit is contained in:
The Wine Synchronizer 2007-07-27 09:38:44 +00:00
parent 35e9e5253f
commit 374593a187
2 changed files with 1 additions and 2 deletions

View file

@ -27,7 +27,6 @@
#include "windef.h"
#include "winbase.h"
#include "winerror.h"
#include "winnls.h"
#include "objbase.h"
#include "mapi.h"
#include "winreg.h"

View file

@ -656,7 +656,7 @@ UINT WINAPI UFromSz(LPCSTR lpszStr)
while (*lpszStr >= '0' && *lpszStr <= '9')
{
ulRet = ulRet * 10 + (*lpszStr - '0');
lpszStr = CharNextA(lpszStr);
lpszStr++;
}
}
return ulRet;