Skip to content

Commit

Permalink
make my_read_ulong() more concise
Browse files Browse the repository at this point in the history
  • Loading branch information
ixfd64 committed Feb 8, 2025
1 parent f46c1ba commit be2417a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/read_config.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@ static int my_read_ulong(char *inifile, char *name, unsigned long long int *valu
}
}
fclose(in);
if (found)return 0;
if (found) {
return 0;
}
return 1;
}

Expand Down

0 comments on commit be2417a

Please sign in to comment.