Commit 6de2696e authored by Rein Klazes's avatar Rein Klazes Committed by Alexandre Julliard

Only log the parameters of tapiGetLocationInfo as addresses, as output

parameters they probably point to garbage.
parent 26b2e898
......@@ -32,7 +32,7 @@ DWORD WINAPI tapiGetLocationInfo(LPSTR lpszCountryCode, LPSTR lpszCityCode)
{
char temp[30];
FIXME("(%s, %s): file sections ???\n", lpszCountryCode, lpszCityCode);
FIXME("(%p, %p): file sections ???\n", lpszCountryCode, lpszCityCode);
if (!(GetPrivateProfileStringA("Locations", "CurrentLocation", "", temp, 30, "telephon.ini")))
return TAPIERR_REQUESTFAILED;
if (!(GetPrivateProfileStringA("Locations", "FIXME_ENTRY", "", lpszCityCode, 8, "telephon.ini")))
......
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