Skip to content

Commit 2c829ba

Browse files
committed
Fix newline
1 parent 981de04 commit 2c829ba

File tree

4 files changed

+3
-1
lines changed

4 files changed

+3
-1
lines changed

ProcessHacker/main.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,7 @@ INT WINAPI wWinMain(
240240
{
241241
PhShowWarning(
242242
NULL,
243+
L"%s",
243244
L"You are attempting to run the 32-bit version of Process Hacker on 64-bit Windows. "
244245
L"Most features will not work correctly.\n\n"
245246
L"Please run the 64-bit version of Process Hacker instead."

phlib/include/svcsup.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ extern WCHAR *PhServiceStartTypeStrings[5];
1010
extern WCHAR *PhServiceErrorControlStrings[4];
1111

1212
PHLIBAPI
13+
_Success_(return != NULL)
1314
PVOID
1415
NTAPI
1516
PhEnumServices(

tools/CustomBuildTool/Build.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1244,7 +1244,7 @@ public static bool BuildDeployUploadArtifacts()
12441244
//if (string.IsNullOrEmpty(buildBuildUrlKey))
12451245
// return false;
12461246

1247-
Program.PrintColorMessage(Environment.NewLine, ConsoleColor.Black);
1247+
Program.PrintColorMessage(Environment.NewLine, ConsoleColor.Black, false);
12481248

12491249
try
12501250
{
Binary file not shown.

0 commit comments

Comments
 (0)