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
No known key found for this signature in database
GPG Key ID: 74B048E5C2474F9A
1 changed files with 1 additions and 0 deletions

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);