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[] =
|
||||
{
|
||||
/* These options set a flag. */
|
||||
{"help", no_argument, 0, 'h'},
|
||||
{0, 0, 0, 0}
|
||||
{"help", no_argument, NULL, 'h'},
|
||||
NULL
|
||||
};
|
||||
int longOptionIndex = 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue