Chore: Use NULL instead of 0
This commit is contained in:
parent
23e1c40539
commit
3abf1b9b7e
2 changed files with 2 additions and 2 deletions
Binary file not shown.
|
@ -97,8 +97,8 @@ int main(int argc, char** argv) {
|
||||||
static struct option longOptions[] =
|
static struct option longOptions[] =
|
||||||
{
|
{
|
||||||
/* These options set a flag. */
|
/* These options set a flag. */
|
||||||
{"help", no_argument, 0, 'h'},
|
{"help", no_argument, NULL, 'h'},
|
||||||
{0, 0, 0, 0}
|
NULL
|
||||||
};
|
};
|
||||||
int longOptionIndex = 0;
|
int longOptionIndex = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue