Signed-off-by: Sven Eckelmann sven.eckelmann@gmx.de --- debugfs.c | 2 +- sys.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/debugfs.c b/debugfs.c index 3b6e2bf..6d2222f 100644 --- a/debugfs.c +++ b/debugfs.c @@ -38,7 +38,7 @@ static char debugfs_mountpoint[MAX_PATH+1]; static const char *debugfs_known_mountpoints[] = { "/sys/kernel/debug/", "/debug/", - 0, + NULL, };
/* use this to force a umount */ diff --git a/sys.c b/sys.c index dfe3979..9137424 100644 --- a/sys.c +++ b/sys.c @@ -39,14 +39,14 @@ const char *sysfs_param_enable[] = { "disable", "1", "0", - 0, + NULL, };
const char *sysfs_param_server[] = { "off", "client", "server", - 0, + NULL, };
static void interface_usage(void)