diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/idevicesyslog.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/idevicesyslog.c b/tools/idevicesyslog.c index d306bfc..3fc7922 100644 --- a/tools/idevicesyslog.c +++ b/tools/idevicesyslog.c @@ -53,9 +53,11 @@ int main(int argc, char *argv[]) uuid[0] = 0; signal(SIGINT, clean_exit); - signal(SIGQUIT, clean_exit); signal(SIGTERM, clean_exit); +#ifndef WIN32 + signal(SIGQUIT, clean_exit); signal(SIGPIPE, SIG_IGN); +#endif /* parse cmdline args */ for (i = 1; i < argc; i++) { |