We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b3affa commit 9a6be75Copy full SHA for 9a6be75
base/shell/cmd/pause.c
@@ -34,23 +34,24 @@
34
* Remove all hardcoded strings in En.rc
35
*/
36
37
-INT cmd_pause (LPTSTR param)
+INT cmd_pause(LPTSTR param)
38
{
39
- TRACE ("cmd_pause: \'%s\')\n", debugstr_aw(param));
+ TRACE("cmd_pause: \'%s\')\n", debugstr_aw(param));
40
41
- if (!_tcsncmp (param, _T("/?"), 2))
+ if (!_tcsncmp(param, _T("/?"), 2))
42
43
ConOutResPaging(TRUE,STRING_PAUSE_HELP1);
44
return 0;
45
}
46
47
if (*param)
48
- ConOutPrintf (param);
+ ConOutPuts(param);
49
else
50
- msg_pause ();
+ msg_pause();
51
52
- cgetchar ();
+ cgetchar();
53
54
+ ConOutChar(_T('\n'));
55
56
57
0 commit comments