summaryrefslogtreecommitdiffstats
path: root/ax25ipd
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2017-01-31 10:15:11 +0100
committerRalf Baechle <ralf@linux-mips.org>2017-01-31 10:15:11 +0100
commit550fe816e546e78931792e94b558336516054415 (patch)
treeabbd9c26e080fceab1308ef562a18d9cc1476ba9 /ax25ipd
parent7173a92eeeb7b4b4bdb17f9064fede35bec87dd4 (diff)
Fix further abuse of 0 as NULL pointer.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'ax25ipd')
-rw-r--r--ax25ipd/ax25ipd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ax25ipd/ax25ipd.c b/ax25ipd/ax25ipd.c
index cce9a29..65df46a 100644
--- a/ax25ipd/ax25ipd.c
+++ b/ax25ipd/ax25ipd.c
@@ -42,7 +42,7 @@ struct option options[] = {
{"configfile", 1, NULL, 'c'},
{"ttydevice", 1, NULL, 'd'},
{"nofork", 0, NULL, 'f'},
- {0, 0, 0, 0}
+ {NULL, 0, NULL, 0}
};
int main(int argc, char **argv)