Add missing \n to output messages.
This commit is contained in:
parent
236893c620
commit
32886f6b88
|
@ -1051,7 +1051,7 @@ BOOL WINAPI CryptSignHashA (HCRYPTHASH hHash, DWORD dwKeySpec, LPCSTR sDescripti
|
||||||
|
|
||||||
TRACE("(0x%lx, %ld, %08ld, %p, %p)\n", hHash, dwKeySpec, dwFlags, pbSignature, pdwSigLen);
|
TRACE("(0x%lx, %ld, %08ld, %p, %p)\n", hHash, dwKeySpec, dwFlags, pbSignature, pdwSigLen);
|
||||||
if (sDescription)
|
if (sDescription)
|
||||||
WARN("The sDescription parameter is not supported (and no longer used). Ignoring.");
|
WARN("The sDescription parameter is not supported (and no longer used). Ignoring.\n");
|
||||||
|
|
||||||
if (!hash)
|
if (!hash)
|
||||||
CRYPT_ReturnLastError(ERROR_INVALID_HANDLE);
|
CRYPT_ReturnLastError(ERROR_INVALID_HANDLE);
|
||||||
|
@ -1233,7 +1233,7 @@ BOOL WINAPI CryptVerifySignatureA (HCRYPTHASH hHash, BYTE *pbSignature, DWORD dw
|
||||||
TRACE("(0x%lx, %p, %ld, 0x%lx, %08ld)\n", hHash, pbSignature,
|
TRACE("(0x%lx, %p, %ld, 0x%lx, %08ld)\n", hHash, pbSignature,
|
||||||
dwSigLen, hPubKey, dwFlags);
|
dwSigLen, hPubKey, dwFlags);
|
||||||
if (sDescription)
|
if (sDescription)
|
||||||
WARN("The sDescription parameter is not supported (and no longer used). Ignoring.");
|
WARN("The sDescription parameter is not supported (and no longer used). Ignoring.\n");
|
||||||
|
|
||||||
if (!hash || !key)
|
if (!hash || !key)
|
||||||
CRYPT_ReturnLastError(ERROR_INVALID_HANDLE);
|
CRYPT_ReturnLastError(ERROR_INVALID_HANDLE);
|
||||||
|
|
|
@ -438,7 +438,7 @@ void WINAPI DrawStatusTextW (HDC hdc, LPRECT lprc, LPCWSTR text, UINT style)
|
||||||
}
|
}
|
||||||
r.left += 3;
|
r.left += 3;
|
||||||
if (style & SBT_RTLREADING)
|
if (style & SBT_RTLREADING)
|
||||||
FIXME("Usupported RTL style!");
|
FIXME("Unsupported RTL style!\n");
|
||||||
DrawTextW (hdc, text, -1, &r, align|DT_VCENTER|DT_SINGLELINE);
|
DrawTextW (hdc, text, -1, &r, align|DT_VCENTER|DT_SINGLELINE);
|
||||||
SetBkMode(hdc, oldbkmode);
|
SetBkMode(hdc, oldbkmode);
|
||||||
}
|
}
|
||||||
|
|
|
@ -304,7 +304,7 @@ static HRESULT WINAPI SysKeyboardAImpl_Acquire(LPDIRECTINPUTDEVICE2A iface)
|
||||||
|
|
||||||
if (current != NULL)
|
if (current != NULL)
|
||||||
{
|
{
|
||||||
FIXME("Not more than one keyboard can be acquired at the same time.");
|
FIXME("Not more than one keyboard can be acquired at the same time.\n");
|
||||||
SysKeyboardAImpl_Unacquire(iface);
|
SysKeyboardAImpl_Unacquire(iface);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -336,7 +336,7 @@ static HRESULT WINAPI SysKeyboardAImpl_Unacquire(LPDIRECTINPUTDEVICE2A iface)
|
||||||
if (current == This)
|
if (current == This)
|
||||||
current = NULL;
|
current = NULL;
|
||||||
else
|
else
|
||||||
ERR("this != current");
|
ERR("this != current\n");
|
||||||
|
|
||||||
This->acquired = 0;
|
This->acquired = 0;
|
||||||
|
|
||||||
|
|
|
@ -710,7 +710,7 @@ static LONG load_VDMX(GdiFont font, LONG height)
|
||||||
}
|
}
|
||||||
|
|
||||||
if(offset < 0) {
|
if(offset < 0) {
|
||||||
FIXME("No suitable ratio found");
|
FIXME("No suitable ratio found\n");
|
||||||
return ppem;
|
return ppem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -246,7 +246,7 @@ LONG WINAPI ImmGetCompositionStringA(
|
||||||
case VER_PLATFORM_WIN32_WINDOWS: return -1;
|
case VER_PLATFORM_WIN32_WINDOWS: return -1;
|
||||||
case VER_PLATFORM_WIN32_NT: return 0;
|
case VER_PLATFORM_WIN32_NT: return 0;
|
||||||
default:
|
default:
|
||||||
FIXME("%ld not supported",version.dwPlatformId);
|
FIXME("%ld not supported\n",version.dwPlatformId);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -269,7 +269,7 @@ LONG WINAPI ImmGetCompositionStringW(
|
||||||
case VER_PLATFORM_WIN32_WINDOWS: return -1;
|
case VER_PLATFORM_WIN32_WINDOWS: return -1;
|
||||||
case VER_PLATFORM_WIN32_NT: return 0;
|
case VER_PLATFORM_WIN32_NT: return 0;
|
||||||
default:
|
default:
|
||||||
FIXME("%ld not supported",version.dwPlatformId);
|
FIXME("%ld not supported\n",version.dwPlatformId);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -491,7 +491,7 @@ UINT WINAPI ImmGetVirtualKey(HWND hWnd)
|
||||||
case VER_PLATFORM_WIN32_NT:
|
case VER_PLATFORM_WIN32_NT:
|
||||||
return 0;
|
return 0;
|
||||||
default:
|
default:
|
||||||
FIXME("%ld not supported",version.dwPlatformId);
|
FIXME("%ld not supported\n",version.dwPlatformId);
|
||||||
return VK_PROCESSKEY;
|
return VK_PROCESSKEY;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -629,7 +629,7 @@ static DWORD CDROM_ReadQChannel(int dev, const CDROM_SUB_Q_DATA_FORMAT* fmt,
|
||||||
break;
|
break;
|
||||||
case IOCTL_CDROM_TRACK_ISRC:
|
case IOCTL_CDROM_TRACK_ISRC:
|
||||||
size = sizeof(SUB_Q_CURRENT_POSITION);
|
size = sizeof(SUB_Q_CURRENT_POSITION);
|
||||||
FIXME("TrackIsrc: NIY on linux");
|
FIXME("TrackIsrc: NIY on linux\n");
|
||||||
data->TrackIsrc.FormatCode = IOCTL_CDROM_TRACK_ISRC;
|
data->TrackIsrc.FormatCode = IOCTL_CDROM_TRACK_ISRC;
|
||||||
data->TrackIsrc.Tcval = 0;
|
data->TrackIsrc.Tcval = 0;
|
||||||
io = 0;
|
io = 0;
|
||||||
|
|
|
@ -1596,7 +1596,7 @@ BOOL WINAPI SHLWAPI_320(LPCSTR lpszSubKey, LPCSTR lpszValue)
|
||||||
|
|
||||||
if (!lpszValue)
|
if (!lpszValue)
|
||||||
{
|
{
|
||||||
WARN("Invalid lpszValue would crash under Win32!");
|
WARN("Invalid lpszValue would crash under Win32!\n");
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1616,7 +1616,7 @@ BOOL WINAPI SHLWAPI_321(LPCWSTR lpszSubKey, LPCWSTR lpszValue)
|
||||||
|
|
||||||
if (!lpszValue)
|
if (!lpszValue)
|
||||||
{
|
{
|
||||||
WARN("Invalid lpszValue would crash under Win32!");
|
WARN("Invalid lpszValue would crash under Win32!\n");
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -226,7 +226,7 @@ void WINAPI DOSVM_QueueEvent( INT irq, INT priority, DOSRELAY relay, LPVOID data
|
||||||
memset(&context,0,sizeof(context));
|
memset(&context,0,sizeof(context));
|
||||||
(*relay)(&context,data);
|
(*relay)(&context,data);
|
||||||
} else {
|
} else {
|
||||||
ERR("IRQ without DOS task: should not happen");
|
ERR("IRQ without DOS task: should not happen\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -613,7 +613,7 @@ void WINAPI DOSVM_QueueEvent( INT irq, INT priority, DOSRELAY relay, LPVOID data
|
||||||
memset(&context,0,sizeof(context));
|
memset(&context,0,sizeof(context));
|
||||||
(*relay)(&context,data);
|
(*relay)(&context,data);
|
||||||
} else {
|
} else {
|
||||||
ERR("IRQ without DOS task: should not happen");
|
ERR("IRQ without DOS task: should not happen\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1316,7 +1316,7 @@ BOOL X11DRV_GetDCOrgEx( X11DRV_PDEVICE *physDev, LPPOINT lpp )
|
||||||
Window root;
|
Window root;
|
||||||
int x, y, w, h, border, depth;
|
int x, y, w, h, border, depth;
|
||||||
|
|
||||||
FIXME("this is not correct for managed windows");
|
FIXME("this is not correct for managed windows\n");
|
||||||
TSXGetGeometry( gdi_display, physDev->drawable, &root,
|
TSXGetGeometry( gdi_display, physDev->drawable, &root,
|
||||||
&x, &y, &w, &h, &border, &depth );
|
&x, &y, &w, &h, &border, &depth );
|
||||||
lpp->x = x;
|
lpp->x = x;
|
||||||
|
|
|
@ -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");
|
WARN(ridiculous, fullname, "pixel_size\n");
|
||||||
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");
|
WARN(ridiculous, fullname, "point_size\n");
|
||||||
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");
|
WARN(ridiculous, fullname, "resolution_x\n");
|
||||||
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");
|
WARN(ridiculous, fullname, "resolution_y\n");
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
if( !(atoi(lfd->resolution_y)) )
|
if( !(atoi(lfd->resolution_y)) )
|
||||||
|
|
|
@ -126,7 +126,7 @@ char IO_pp_init(void)
|
||||||
{
|
{
|
||||||
WARN("Configuration: %s uses the same virtual ports as %s\n",
|
WARN("Configuration: %s uses the same virtual ports as %s\n",
|
||||||
buffer,PPDeviceList[0].devicename);
|
buffer,PPDeviceList[0].devicename);
|
||||||
WARN("Configuration: Rejecting configuration item");
|
WARN("Configuration: Rejecting configuration item\n");
|
||||||
userbase = 0;
|
userbase = 0;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -920,14 +920,14 @@ HRGN WINAPI ExtCreateRegion( const XFORM* lpXform, DWORD dwCount, const RGNDATA*
|
||||||
TRACE(" %p %ld %p = ", lpXform, dwCount, rgndata );
|
TRACE(" %p %ld %p = ", lpXform, dwCount, rgndata );
|
||||||
|
|
||||||
if( lpXform )
|
if( lpXform )
|
||||||
WARN("(Xform not implemented - ignored) ");
|
WARN("(Xform not implemented - ignored)\n");
|
||||||
|
|
||||||
if( rgndata->rdh.iType != RDH_RECTANGLES )
|
if( rgndata->rdh.iType != RDH_RECTANGLES )
|
||||||
{
|
{
|
||||||
/* FIXME: We can use CreatePolyPolygonRgn() here
|
/* FIXME: We can use CreatePolyPolygonRgn() here
|
||||||
* for trapezoidal data */
|
* for trapezoidal data */
|
||||||
|
|
||||||
WARN("(Unsupported region data) ");
|
WARN("(Unsupported region data)\n");
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -945,7 +945,7 @@ HRGN WINAPI ExtCreateRegion( const XFORM* lpXform, DWORD dwCount, const RGNDATA*
|
||||||
TRACE("%04x\n", hrgn );
|
TRACE("%04x\n", hrgn );
|
||||||
return hrgn;
|
return hrgn;
|
||||||
}
|
}
|
||||||
else ERR("Could not get pointer to newborn Region!");
|
else ERR("Could not get pointer to newborn Region!\n");
|
||||||
}
|
}
|
||||||
fail:
|
fail:
|
||||||
WARN("Failed\n");
|
WARN("Failed\n");
|
||||||
|
|
|
@ -336,7 +336,7 @@ static HKEY get_volatile_regkey(void)
|
||||||
if (RegCreateKeyExA( HKEY_CURRENT_USER, WINE_CURRENT_USER_REGKEY,
|
if (RegCreateKeyExA( HKEY_CURRENT_USER, WINE_CURRENT_USER_REGKEY,
|
||||||
0, 0, REG_OPTION_VOLATILE, KEY_ALL_ACCESS, 0,
|
0, 0, REG_OPTION_VOLATILE, KEY_ALL_ACCESS, 0,
|
||||||
&volatile_key, 0 ) != ERROR_SUCCESS)
|
&volatile_key, 0 ) != ERROR_SUCCESS)
|
||||||
ERR("Can't create wine configuration registry branch");
|
ERR("Can't create wine configuration registry branch\n");
|
||||||
}
|
}
|
||||||
return volatile_key;
|
return volatile_key;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue