Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'function' : actual parameter has type 'void' : parameter 'number'
The parameter passed to the function is type void
, which is not allowed. Use a pointer to void ( void *
) instead.
The number
indicates which parameter is void
.