Commit 1410cdd0 authored by NF Stevens's avatar NF Stevens Committed by Alexandre Julliard

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

parent 724f1900
......@@ -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;
......
......@@ -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 */
......
......@@ -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;
{
......
......@@ -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;
}
......
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment