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);
|
||||
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)
|
||||
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,
|
||||
dwSigLen, hPubKey, dwFlags);
|
||||
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)
|
||||
CRYPT_ReturnLastError(ERROR_INVALID_HANDLE);
|
||||
|
|
|
@ -438,7 +438,7 @@ void WINAPI DrawStatusTextW (HDC hdc, LPRECT lprc, LPCWSTR text, UINT style)
|
|||
}
|
||||
r.left += 3;
|
||||
if (style & SBT_RTLREADING)
|
||||
FIXME("Usupported RTL style!");
|
||||
FIXME("Unsupported RTL style!\n");
|
||||
DrawTextW (hdc, text, -1, &r, align|DT_VCENTER|DT_SINGLELINE);
|
||||
SetBkMode(hdc, oldbkmode);
|
||||
}
|
||||
|
|
|
@ -304,7 +304,7 @@ static HRESULT WINAPI SysKeyboardAImpl_Acquire(LPDIRECTINPUTDEVICE2A iface)
|
|||
|
||||
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);
|
||||
}
|
||||
|
||||
|
@ -336,7 +336,7 @@ static HRESULT WINAPI SysKeyboardAImpl_Unacquire(LPDIRECTINPUTDEVICE2A iface)
|
|||
if (current == This)
|
||||
current = NULL;
|
||||
else
|
||||
ERR("this != current");
|
||||
ERR("this != current\n");
|
||||
|
||||
This->acquired = 0;
|
||||
|
||||
|
|
|
@ -710,7 +710,7 @@ static LONG load_VDMX(GdiFont font, LONG height)
|
|||
}
|
||||
|
||||
if(offset < 0) {
|
||||
FIXME("No suitable ratio found");
|
||||
FIXME("No suitable ratio found\n");
|
||||
return ppem;
|
||||
}
|
||||
|
||||
|
|
|
@ -246,7 +246,7 @@ LONG WINAPI ImmGetCompositionStringA(
|
|||
case VER_PLATFORM_WIN32_WINDOWS: return -1;
|
||||
case VER_PLATFORM_WIN32_NT: return 0;
|
||||
default:
|
||||
FIXME("%ld not supported",version.dwPlatformId);
|
||||
FIXME("%ld not supported\n",version.dwPlatformId);
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
@ -269,7 +269,7 @@ LONG WINAPI ImmGetCompositionStringW(
|
|||
case VER_PLATFORM_WIN32_WINDOWS: return -1;
|
||||
case VER_PLATFORM_WIN32_NT: return 0;
|
||||
default:
|
||||
FIXME("%ld not supported",version.dwPlatformId);
|
||||
FIXME("%ld not supported\n",version.dwPlatformId);
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
@ -491,7 +491,7 @@ UINT WINAPI ImmGetVirtualKey(HWND hWnd)
|
|||
case VER_PLATFORM_WIN32_NT:
|
||||
return 0;
|
||||
default:
|
||||
FIXME("%ld not supported",version.dwPlatformId);
|
||||
FIXME("%ld not supported\n",version.dwPlatformId);
|
||||
return VK_PROCESSKEY;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -629,7 +629,7 @@ static DWORD CDROM_ReadQChannel(int dev, const CDROM_SUB_Q_DATA_FORMAT* fmt,
|
|||
break;
|
||||
case IOCTL_CDROM_TRACK_ISRC:
|
||||
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.Tcval = 0;
|
||||
io = 0;
|
||||
|
|
|
@ -1596,7 +1596,7 @@ BOOL WINAPI SHLWAPI_320(LPCSTR lpszSubKey, LPCSTR lpszValue)
|
|||
|
||||
if (!lpszValue)
|
||||
{
|
||||
WARN("Invalid lpszValue would crash under Win32!");
|
||||
WARN("Invalid lpszValue would crash under Win32!\n");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
@ -1616,7 +1616,7 @@ BOOL WINAPI SHLWAPI_321(LPCWSTR lpszSubKey, LPCWSTR lpszValue)
|
|||
|
||||
if (!lpszValue)
|
||||
{
|
||||
WARN("Invalid lpszValue would crash under Win32!");
|
||||
WARN("Invalid lpszValue would crash under Win32!\n");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
|
|
@ -226,7 +226,7 @@ void WINAPI DOSVM_QueueEvent( INT irq, INT priority, DOSRELAY relay, LPVOID data
|
|||
memset(&context,0,sizeof(context));
|
||||
(*relay)(&context,data);
|
||||
} 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));
|
||||
(*relay)(&context,data);
|
||||
} 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;
|
||||
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,
|
||||
&x, &y, &w, &h, &border, &depth );
|
||||
lpp->x = x;
|
||||
|
|
|
@ -644,7 +644,7 @@ static int LFD_InitFontInfo( fontInfo* fi, const LFD* lfd, LPCSTR fullname )
|
|||
j = strlen(lfd->pixel_size);
|
||||
if( j == 0 || j > 3 )
|
||||
{
|
||||
WARN(ridiculous, fullname, "pixel_size");
|
||||
WARN(ridiculous, fullname, "pixel_size\n");
|
||||
return FALSE;
|
||||
}
|
||||
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);
|
||||
if( j == 0 || j > 3 )
|
||||
{
|
||||
WARN(ridiculous, fullname, "point_size");
|
||||
WARN(ridiculous, fullname, "point_size\n");
|
||||
return FALSE;
|
||||
}
|
||||
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);
|
||||
if( j == 0 || j > 3 )
|
||||
{
|
||||
WARN(ridiculous, fullname, "resolution_x");
|
||||
WARN(ridiculous, fullname, "resolution_x\n");
|
||||
return FALSE;
|
||||
}
|
||||
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);
|
||||
if( j == 0 || j > 3 )
|
||||
{
|
||||
WARN(ridiculous, fullname, "resolution_y");
|
||||
WARN(ridiculous, fullname, "resolution_y\n");
|
||||
return FALSE;
|
||||
}
|
||||
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",
|
||||
buffer,PPDeviceList[0].devicename);
|
||||
WARN("Configuration: Rejecting configuration item");
|
||||
WARN("Configuration: Rejecting configuration item\n");
|
||||
userbase = 0;
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -920,14 +920,14 @@ HRGN WINAPI ExtCreateRegion( const XFORM* lpXform, DWORD dwCount, const RGNDATA*
|
|||
TRACE(" %p %ld %p = ", lpXform, dwCount, rgndata );
|
||||
|
||||
if( lpXform )
|
||||
WARN("(Xform not implemented - ignored) ");
|
||||
WARN("(Xform not implemented - ignored)\n");
|
||||
|
||||
if( rgndata->rdh.iType != RDH_RECTANGLES )
|
||||
{
|
||||
/* FIXME: We can use CreatePolyPolygonRgn() here
|
||||
* for trapezoidal data */
|
||||
|
||||
WARN("(Unsupported region data) ");
|
||||
WARN("(Unsupported region data)\n");
|
||||
goto fail;
|
||||
}
|
||||
|
||||
|
@ -945,7 +945,7 @@ HRGN WINAPI ExtCreateRegion( const XFORM* lpXform, DWORD dwCount, const RGNDATA*
|
|||
TRACE("%04x\n", hrgn );
|
||||
return hrgn;
|
||||
}
|
||||
else ERR("Could not get pointer to newborn Region!");
|
||||
else ERR("Could not get pointer to newborn Region!\n");
|
||||
}
|
||||
fail:
|
||||
WARN("Failed\n");
|
||||
|
|
|
@ -336,7 +336,7 @@ static HKEY get_volatile_regkey(void)
|
|||
if (RegCreateKeyExA( HKEY_CURRENT_USER, WINE_CURRENT_USER_REGKEY,
|
||||
0, 0, REG_OPTION_VOLATILE, KEY_ALL_ACCESS, 0,
|
||||
&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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue