From 6138e94124b9b0c75995fa0613baffe6b9949d9d Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Sun, 4 Oct 2015 19:01:06 +0200 Subject: [PATCH] Fix colormake not resetting color. --- utils/colormake.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/colormake.cpp b/utils/colormake.cpp index a41348c2..3e7e6ffb 100644 --- a/utils/colormake.cpp +++ b/utils/colormake.cpp @@ -100,5 +100,7 @@ int main(int /*argc*/, char* argv[]) free(line); int status; waitpid(child_pid, &status, 0); + printf("\e[m"); + fflush(stdout); return WEXITSTATUS(status); }