Skip to content
Snippets Groups Projects
Commit 7b75a88f authored by Moe Jette's avatar Moe Jette
Browse files

Switch exit(-1) for return -1;

parent 7204cf89
No related branches found
No related tags found
No related merge requests found
......@@ -220,7 +220,7 @@ task_exec(char *config_data, char **prog_env)
if (strlen (line) >= (BUF_SIZE - 1)) {
error ("Line %d of configuration file too long",
line_num);
exit (-1);
return -1;
}
p = line;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment