Added "return" to sig_handler

pull/55/head
abrahamsonn 2017-06-02 13:57:37 -06:00 committed by GitHub
parent ddef4d8a6b
commit 1eb08e7cb6
1 changed files with 1 additions and 0 deletions

View File

@ -50,6 +50,7 @@ void sig_handler(const int sig)
{
printf("\nSIGINT %d handled\n", sig);
cleanup = 1;
return;
}
int main(int argc, char** argv)