Fixed some more missing \n in traces.

oldstable
Vincent Béron 2002-05-29 19:09:54 +00:00 committed by Alexandre Julliard
parent bbee7ec711
commit 6a5ba8fba2
6 changed files with 14 additions and 14 deletions

View File

@ -517,7 +517,7 @@ static void execute(LPDIRECT3DEXECUTEBUFFER lpBuff,
/* This is where doing Direct3D on top on OpenGL is quite difficult. /* This is where doing Direct3D on top on OpenGL is quite difficult.
This method transforms a set of vertices using the CURRENT state This method transforms a set of vertices using the CURRENT state
(lighting, projection, ...) but does not rasterize them. (lighting, projection, ...) but does not rasterize them.
They will oinly be put on screen later (with the POINT / LINE and They will only be put on screen later (with the POINT / LINE and
TRIANGLE op-codes). The problem is that you can have a triangle TRIANGLE op-codes). The problem is that you can have a triangle
with each point having been transformed using another state... with each point having been transformed using another state...

View File

@ -615,7 +615,7 @@ DIB_DirectDrawSurface_BltFast(LPDIRECTDRAWSURFACE7 iface, DWORD dstx,
FIXME("(%p)->(%ld,%ld,%p,%p,%08lx)\n", FIXME("(%p)->(%ld,%ld,%p,%p,%08lx)\n",
This,dstx,dsty,src,rsrc,trans This,dstx,dsty,src,rsrc,trans
); );
FIXME(" trans:"); FIXME("\ttrans:");
if (FIXME_ON(ddraw)) if (FIXME_ON(ddraw))
DDRAW_dump_DDBLTFAST(trans); DDRAW_dump_DDBLTFAST(trans);
if (rsrc) if (rsrc)

View File

@ -4464,7 +4464,7 @@ HRESULT WINAPI VariantTimeToSystemTime( double vtime, LPSYSTEMTIME lpSystemTime
struct tm r; struct tm r;
TRACE(" Variant = %f SYSTEMTIME ptr %p", vtime, lpSystemTime); TRACE(" Variant = %f SYSTEMTIME ptr %p\n", vtime, lpSystemTime);
if (vtime >= 0) if (vtime >= 0)
{ {

View File

@ -771,7 +771,7 @@ DWORD WINAPI SHRegSetPathA(HKEY hKey, LPCSTR lpszSubKey, LPCSTR lpszValue,
{ {
char szBuff[MAX_PATH]; char szBuff[MAX_PATH];
FIXME("(hkey=0x%08x,%s,%s,%p,%ld) - semi-stub",hKey, debugstr_a(lpszSubKey), FIXME("(hkey=0x%08x,%s,%s,%p,%ld) - semi-stub\n",hKey, debugstr_a(lpszSubKey),
debugstr_a(lpszValue), lpszPath, dwFlags); debugstr_a(lpszValue), lpszPath, dwFlags);
lstrcpyA(szBuff, lpszPath); lstrcpyA(szBuff, lpszPath);
@ -792,7 +792,7 @@ DWORD WINAPI SHRegSetPathW(HKEY hKey, LPCWSTR lpszSubKey, LPCWSTR lpszValue,
{ {
WCHAR szBuff[MAX_PATH]; WCHAR szBuff[MAX_PATH];
FIXME("(hkey=0x%08x,%s,%s,%p,%ld) - semi-stub",hKey, debugstr_w(lpszSubKey), FIXME("(hkey=0x%08x,%s,%s,%p,%ld) - semi-stub\n",hKey, debugstr_w(lpszSubKey),
debugstr_w(lpszValue), lpszPath, dwFlags); debugstr_w(lpszValue), lpszPath, dwFlags);
lstrcpyW(szBuff, lpszPath); lstrcpyW(szBuff, lpszPath);
@ -999,7 +999,7 @@ LONG WINAPI SHQueryInfoKeyW(HKEY hKey, LPDWORD pwSubKeys, LPDWORD pwSubKeyMax,
if (!pcbData && pData != pvData) if (!pcbData && pData != pvData)
{ {
WARN("Invalid pcbData would crash under Win32!"); WARN("Invalid pcbData would crash under Win32!\n");
return ERROR_OUTOFMEMORY; return ERROR_OUTOFMEMORY;
} }
@ -1370,7 +1370,7 @@ DWORD WINAPI SHDeleteOrphanKeyA(HKEY hKey, LPCSTR lpszSubKey)
HKEY hSubKey; HKEY hSubKey;
DWORD dwKeyCount = 0, dwValueCount = 0, dwRet; DWORD dwKeyCount = 0, dwValueCount = 0, dwRet;
TRACE("(hkey=0x%08x,%s)", hKey, debugstr_a(lpszSubKey)); TRACE("(hkey=0x%08x,%s)\n", hKey, debugstr_a(lpszSubKey));
dwRet = RegOpenKeyExA(hKey, lpszSubKey, 0, KEY_READ, &hSubKey); dwRet = RegOpenKeyExA(hKey, lpszSubKey, 0, KEY_READ, &hSubKey);
@ -1399,7 +1399,7 @@ DWORD WINAPI SHDeleteOrphanKeyW(HKEY hKey, LPCWSTR lpszSubKey)
HKEY hSubKey; HKEY hSubKey;
DWORD dwKeyCount = 0, dwValueCount = 0, dwRet; DWORD dwKeyCount = 0, dwValueCount = 0, dwRet;
TRACE("(hkey=0x%08x,%s)", hKey, debugstr_w(lpszSubKey)); TRACE("(hkey=0x%08x,%s)\n", hKey, debugstr_w(lpszSubKey));
dwRet = RegOpenKeyExW(hKey, lpszSubKey, 0, KEY_READ, &hSubKey); dwRet = RegOpenKeyExW(hKey, lpszSubKey, 0, KEY_READ, &hSubKey);

View File

@ -644,7 +644,7 @@ static int LFD_InitFontInfo( fontInfo* fi, const LFD* lfd, LPCSTR fullname )
j = strlen(lfd->pixel_size); j = strlen(lfd->pixel_size);
if( j == 0 || j > 3 ) if( j == 0 || j > 3 )
{ {
WARN(ridiculous, fullname, "pixel_size\n"); WARN(ridiculous, fullname, "pixel_size");
return FALSE; return FALSE;
} }
if( !(fi->lfd_height = atoi(lfd->pixel_size)) ) if( !(fi->lfd_height = atoi(lfd->pixel_size)) )
@ -653,7 +653,7 @@ static int LFD_InitFontInfo( fontInfo* fi, const LFD* lfd, LPCSTR fullname )
j = strlen(lfd->point_size); j = strlen(lfd->point_size);
if( j == 0 || j > 3 ) if( j == 0 || j > 3 )
{ {
WARN(ridiculous, fullname, "point_size\n"); WARN(ridiculous, fullname, "point_size");
return FALSE; return FALSE;
} }
if( !(atoi(lfd->point_size)) ) if( !(atoi(lfd->point_size)) )
@ -662,7 +662,7 @@ static int LFD_InitFontInfo( fontInfo* fi, const LFD* lfd, LPCSTR fullname )
j = strlen(lfd->resolution_x); j = strlen(lfd->resolution_x);
if( j == 0 || j > 3 ) if( j == 0 || j > 3 )
{ {
WARN(ridiculous, fullname, "resolution_x\n"); WARN(ridiculous, fullname, "resolution_x");
return FALSE; return FALSE;
} }
if( !(fi->lfd_resolution = atoi(lfd->resolution_x)) ) if( !(fi->lfd_resolution = atoi(lfd->resolution_x)) )
@ -671,7 +671,7 @@ static int LFD_InitFontInfo( fontInfo* fi, const LFD* lfd, LPCSTR fullname )
j = strlen(lfd->resolution_y); j = strlen(lfd->resolution_y);
if( j == 0 || j > 3 ) if( j == 0 || j > 3 )
{ {
WARN(ridiculous, fullname, "resolution_y\n"); WARN(ridiculous, fullname, "resolution_y");
return FALSE; return FALSE;
} }
if( !(atoi(lfd->resolution_y)) ) if( !(atoi(lfd->resolution_y)) )

View File

@ -307,7 +307,7 @@ BOOL __stdcall ZIPEXTRA__OpenZipFile(LPCSTR pszFileName);
.c: .c:
BOOL __stdcall ZIPEXTRA__OpenZipFile(LPCSTR pszFileName) BOOL __stdcall ZIPEXTRA__OpenZipFile(LPCSTR pszFileName)
{ {
TRACE("stub"); TRACE("stub\n");
return 0; return 0;
} }
@ -379,7 +379,7 @@ BOOL __stdcall ZIPEXTRA__OpenZipFile(LPCSTR pszFileName)
{ {
BOOL (__stdcall *pFunc)(LPCSTR) = (void*)GetProcAddress(hDLL,"_OpenZipFile"); BOOL (__stdcall *pFunc)(LPCSTR) = (void*)GetProcAddress(hDLL,"_OpenZipFile");
BOOL retVal; BOOL retVal;
TRACE("((LPCSTR)%s) stub", pszFileName); TRACE("((LPCSTR)%s) stub\n", pszFileName);
retVal = pFunc(pszFileName); retVal = pFunc(pszFileName);
TRACE("returned (%ld)\n",(LONG)retVal)); TRACE("returned (%ld)\n",(LONG)retVal));
return retVal; return retVal;