fixed compiler warning about different pointer types

This commit is contained in:
Radim Kolar 2009-09-22 23:46:35 +02:00
parent 757be6a8df
commit cb6518427d

View File

@ -90,7 +90,7 @@ int main (int argc, char ** argv)
/* special case `du' without file arguments -- becomes `du .' */ /* special case `du' without file arguments -- becomes `du .' */
if (argc == optind) { if (argc == optind) {
argv=wild; argv=(char **)wild;
optind=0; optind=0;
} }