aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraaronl <aaronl@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-08-23 07:45:26 +0000
committeraaronl <aaronl@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-08-23 07:45:26 +0000
commite15980e9b5103fb6609cdb60e3fe6ab00507c6ee (patch)
tree87dc3328f25358506f7e7422709c657a8f2287d7
parentb422328fd2930d839206d405dcbf48e6c0d2344e (diff)
downloadbusybox-w32-e15980e9b5103fb6609cdb60e3fe6ab00507c6ee.tar.gz
busybox-w32-e15980e9b5103fb6609cdb60e3fe6ab00507c6ee.tar.bz2
busybox-w32-e15980e9b5103fb6609cdb60e3fe6ab00507c6ee.zip
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
-rw-r--r--modutils/modprobe.c2
1 files changed, 1 insertions, 1 deletions
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)
531 531
532 if (remove_opt) { 532 if (remove_opt) {
533 do { 533 do {
534 mod_remove ( optind < argc ? xstrdup ( argv [optind] ) : 0 ); 534 mod_remove ( optind < argc ? xstrdup ( argv [optind] ) : NULL );
535 } while ( ++optind < argc ); 535 } while ( ++optind < argc );
536 536
537 return EXIT_SUCCESS; 537 return EXIT_SUCCESS;