Commit bb9c9264 authored by Marcin Baczyński's avatar Marcin Baczyński Committed by Alexandre Julliard

libport: Remove superfluous void* cast.

parent 6a02e744
......@@ -441,8 +441,7 @@ _getopt_initialize (argc, argv, optstring)
int len = nonoption_flags_max_len = strlen (orig_str);
if (nonoption_flags_max_len < argc)
nonoption_flags_max_len = argc;
__getopt_nonoption_flags =
(char *) malloc (nonoption_flags_max_len);
__getopt_nonoption_flags = malloc (nonoption_flags_max_len);
if (__getopt_nonoption_flags == NULL)
nonoption_flags_max_len = -1;
else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment