Add blank line after setlocale

setlocale() has to be separated from the signal handling.
This commit is contained in:
Aaron Marcher
2017-09-16 14:11:49 +02:00
parent fb1f1dea2e
commit 8e25af7dc3

View File

@ -843,6 +843,7 @@ main(int argc, char *argv[])
}
setlocale(LC_ALL, "");
memset(&act, 0, sizeof(act));
act.sa_handler = terminate;
sigaction(SIGINT, &act, NULL);