From 94ace66323562b7590bc38f61c27439293aa6fd2 Mon Sep 17 00:00:00 2001 From: Spacelord Date: Wed, 18 Dec 2019 08:56:55 +0100 Subject: Change --version output to stdout --- midimonster.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/midimonster.c b/midimonster.c index 67614d4..48c6fe9 100644 --- a/midimonster.c +++ b/midimonster.c @@ -224,7 +224,7 @@ static void event_free(){ } static void version(){ - fprintf(stderr, "MIDIMonster %s\n", MIDIMONSTER_VERSION); + fprintf(stdout, "MIDIMonster %s\n", MIDIMONSTER_VERSION); } static int usage(char* fn){ -- cgit v1.2.3