Chore: Use NULL instead of 0

This commit is contained in:
Dorian Zedler 2022-06-29 10:17:32 +02:00
parent 23e1c40539
commit 3abf1b9b7e
Signed by: dorian
GPG Key ID: 989DE36109AFA354
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -97,8 +97,8 @@ int main(int argc, char** argv) {
static struct option longOptions[] =
{
/* These options set a flag. */
{"help", no_argument, 0, 'h'},
{0, 0, 0, 0}
{"help", no_argument, NULL, 'h'},
NULL
};
int longOptionIndex = 0;