commit | 0df910af49d8f9c24d8283533267c02a9e659609 | [log] [tgz] |
---|---|---|
author | Aaron Lehmann <aaronl@vitelius.com> | Fri Aug 23 07:45:26 2002 +0000 |
committer | Aaron Lehmann <aaronl@vitelius.com> | Fri Aug 23 07:45:26 2002 +0000 |
tree | 87dc3328f25358506f7e7422709c657a8f2287d7 | |
parent | 5d3cb7cc1f2e3219279ccc791eae9625e0b52449 [diff] |
for some baffling reason tinycc insists that i change this 0 to NULL
diff --git a/modutils/modprobe.c b/modutils/modprobe.c index c046983..6a714da 100644 --- a/modutils/modprobe.c +++ b/modutils/modprobe.c
@@ -531,7 +531,7 @@ 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;