A couple of TRACE messages are missing a newline at the end.

This commit is contained in:
NF Stevens 1998-10-26 11:04:12 +00:00 committed by Alexandre Julliard
parent 724f1900de
commit 1410cdd0c4
5 changed files with 7 additions and 7 deletions

View file

@ -1470,7 +1470,7 @@ TREEVIEW_KeyDown (WND *wndPtr, WPARAM32 wParam, LPARAM lParam)
int prevSelect;
TRACE (treeview,"%x %lx",wParam, lParam);
TRACE (treeview,"%x %lx\n",wParam, lParam);
prevSelect=infoPtr->selectedItem;
if (!prevSelect) return FALSE;

View file

@ -250,7 +250,7 @@ void WINAPI INT_Int10Handler( CONTEXT *context )
case 0x12: /* ALTERNATE FUNCTION SELECT */
switch BL_reg(context) {
case 0x10: /* GET EGA INFO */
TRACE(int10, "EGA Info Requested");
TRACE(int10, "EGA Info Requested\n");
BX_reg(context) = 0x0003;
CX_reg(context) = 0x0009;
break;
@ -290,7 +290,7 @@ void WINAPI INT_Int10Handler( CONTEXT *context )
case 0x1a:
switch AL_reg(context) {
case 0x00: /* GET DISPLAY COMBINATION CODE */
TRACE(int10, "Get Display Combination Code");
TRACE(int10, "Get Display Combination Code\n");
/* Why are we saying this? */
/* Do we need to check if we are in a windows or text app? */
BX_reg(context) = 0x0008; /* VGA w/ color analog display */

View file

@ -1553,7 +1553,7 @@ static DWORD mciSysInfo16(DWORD dwFlags, LPMCI_SYSINFO_PARMS16 lpParms)
strcpy(lpstrReturn, lpmciInstallNames);
return 0;
case MCI_SYSINFO_NAME:
TRACE(mci, "MCI_SYSINFO_NAME");
TRACE(mci, "MCI_SYSINFO_NAME\n");
if (lpParms->dwNumber > mciInstalledCount)
return MMSYSERR_INVALPARAM;
{

View file

@ -891,7 +891,7 @@ INT32 WINAPI TranslateAccelerator32(HWND32 hWnd, HACCEL32 hAccel, LPMSG32 msg)
lpAccelTbl[i].key,lpAccelTbl[i].cmd))
return 1;
} while ((lpAccelTbl[i++].fVirt & 0x80) == 0);
WARN(accel, "couldn't translate accelerator key");
WARN(accel, "couldn't translate accelerator key\n");
return 0;
}
@ -927,7 +927,7 @@ msg->hwnd=%04x, msg->message=%04x\n", hAccel,hWnd,msg->hwnd,msg->message);
lpAccelTbl[i].key,lpAccelTbl[i].cmd))
return 1;
} while ((lpAccelTbl[i++].fVirt & 0x80) == 0);
WARN(accel, "couldn't translate accelerator key");
WARN(accel, "couldn't translate accelerator key\n");
return 0;
}

View file

@ -259,7 +259,7 @@ static LRESULT MDIRefreshMenu( HWND32 hwnd, HMENU32 hmenuFrame,
TRACE(mdi, "%04x %04x %04x\n",
hwnd, hmenuFrame, hmenuWindow);
FIXME(mdi,"partially function stub");
FIXME(mdi,"partially function stub\n");
return oldFrameMenu;
}