for some baffling reason tinycc insists that i change this 0 to NULL

This commit is contained in:
Aaron Lehmann 2002-08-23 07:45:26 +00:00
parent 5d3cb7cc1f
commit 0df910af49

View File

@ -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;