diff options
| author | Richard Shann <richard.shann@virgin.net> | 2015-08-11 19:21:48 +0100 |
|---|---|---|
| committer | Richard Shann <richard.shann@virgin.net> | 2015-08-11 19:21:48 +0100 |
| commit | ab6b4870f3dba3e54f777efe9929325f75a82900 (patch) | |
| tree | a243a680ba645be5844c89d734f5fe2ea304d505 | |
| parent | a11f4ffce76aa7a7f000307004d5f0d41a2ab54f (diff) | |
| download | denemo-ab6b4870f3dba3e54f777efe9929325f75a82900.tar.gz | |
Leave out a useless signal handler bug #35749: Fix signal handler
| -rw-r--r-- | src/core/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/main.c b/src/core/main.c index 468bdb9..3c08736 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -192,7 +192,7 @@ process_command_line (int argc, char **argv, gboolean gtkstatus) g_string_ascii_down (Denemo.prefs.midi_driver); #ifdef HAVE_SIGCHLD - signal (SIGCHLD, sigchld_handler); + //signal (SIGCHLD, sigchld_handler); #endif //Set command line mode if gtk could not be initialized |
