Francois Gouget : port: Remove unneeded casts of zero.
8 Dec
2008
8 Dec
'08
3:46 p.m.
Module: wine Branch: master Commit: df949b4e86453d49ace961ca0cf7a28efec16d10 URL: http://source.winehq.org/git/wine.git/?a=commit;h=df949b4e86453d49ace961ca0c... Author: Francois Gouget <fgouget(a)free.fr> Date: Mon Dec 8 09:25:03 2008 +0100 port: Remove unneeded casts of zero. --- libs/port/getopt.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/port/getopt.c b/libs/port/getopt.c index be82779..041bef0 100644 --- a/libs/port/getopt.c +++ b/libs/port/getopt.c @@ -1203,8 +1203,8 @@ getopt (argc, argv, optstring) const char *optstring; { return _getopt_internal (argc, argv, optstring, - (const struct option *) 0, - (int *) 0, + NULL, + NULL, 0); }
6311
Age (days ago)
6311
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard