Skip to content

Commit

Permalink
TODO:
Browse files Browse the repository at this point in the history
Fix Console Output
  • Loading branch information
HerXayah committed Jul 8, 2023
1 parent 31e6d7e commit 6d3c73a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ if "%1"=="" set compiler=gcc.exe
cd "%~dp0"
"%compiler%" -s -mwindows src/main.c -lwtsapi32 -o ./output/DiscordFixer.exe
mkdir output>nul 2>&1
upx --best --ultra-brute /output/DiscordFixer.exe>nul 2>&1
upx --best --ultra-brute ./output/DiscordFixer.exe>nul 2>&1
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ INT WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, INT n
CloseHandle(hThread);
} while (Thread32Next(hThreadSnapshot, &te));
}
printf("\n");
printf("Done!\n");
CloseHandle(hThreadSnapshot);
CloseHandle(hProcess);
}
Expand Down

0 comments on commit 6d3c73a

Please sign in to comment.