From 6de2696ec5ec82216b2b4de4db5234c3bdc00c01 Mon Sep 17 00:00:00 2001 From: Rein Klazes Date: Tue, 8 Apr 2003 19:42:06 +0000 Subject: [PATCH] Only log the parameters of tapiGetLocationInfo as addresses, as output parameters they probably point to garbage. --- dlls/tapi32/assisted.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/tapi32/assisted.c b/dlls/tapi32/assisted.c index 098ccfaf16..817b5eb94b 100644 --- a/dlls/tapi32/assisted.c +++ b/dlls/tapi32/assisted.c @@ -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"))) -- 2.32.0.93.g670b81a890