From e15980e9b5103fb6609cdb60e3fe6ab00507c6ee Mon Sep 17 00:00:00 2001 From: aaronl Date: Fri, 23 Aug 2002 07:45:26 +0000 Subject: for some baffling reason tinycc insists that i change this 0 to NULL git-svn-id: svn://busybox.net/trunk/busybox@5356 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- modutils/modprobe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modutils/modprobe.c b/modutils/modprobe.c index c0469833f..6a714da77 100644 --- a/modutils/modprobe.c +++ b/modutils/modprobe.c @@ -531,7 +531,7 @@ extern int modprobe_main(int argc, char** argv) if (remove_opt) { do { - mod_remove ( optind < argc ? xstrdup ( argv [optind] ) : 0 ); + mod_remove ( optind < argc ? xstrdup ( argv [optind] ) : NULL ); } while ( ++optind < argc ); return EXIT_SUCCESS; -- cgit v1.2.3-55-g6feb