port: Remove unneeded casts of zero.

This commit is contained in:
Francois Gouget 2008-12-08 09:25:03 +01:00 committed by Alexandre Julliard
parent dc46cd042c
commit df949b4e86
1 changed files with 2 additions and 2 deletions

View File

@ -1203,8 +1203,8 @@ getopt (argc, argv, optstring)
const char *optstring; const char *optstring;
{ {
return _getopt_internal (argc, argv, optstring, return _getopt_internal (argc, argv, optstring,
(const struct option *) 0, NULL,
(int *) 0, NULL,
0); 0);
} }