summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDieter Verfaillie <dieterv@optionexplicit.be>2011-04-07 09:57:42 +0200
committerDan Nicholson <dbn.lists@gmail.com>2012-05-05 10:49:58 -0700
commit79c768aadf41ed6275e33be9e402430f96d143d4 (patch)
tree4aadde5d589e10f6f75519dd3830f515ff9b30d6
parent6485a160fe4c7cddfc00078d4d03d1efefc91607 (diff)
Revert "Print out \r\n on windows, not just \n"
This reverts commit 25e8ca84acd7fc604fbc59213587887d5119d51a. This was working around a bug with mingw/msys shell which seems to be fixed now. Freedesktop #17053
-rw-r--r--main.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/main.c b/main.c
index 95ce69d..88375de 100644
--- a/main.c
+++ b/main.c
@@ -747,11 +747,7 @@ main (int argc, char **argv)
}
if (need_newline)
-#ifdef G_OS_WIN32
- printf ("\r\n");
-#else
printf ("\n");
-#endif
return 0;
}