* dcrt0.cc (insert_file): Eliminate unused parameter.
(build_argv): Ditto. * exceptions.cc (stack): Eliminate unused parameters. (stackdump): Ditto. (cygwin_stackdump): Reflect above changes. (sig_handle): Ditto. * fhandler.cc (fhandler_base::set_inheritance): Use kludge to avoid unused parameter warning.
This commit is contained in:
@ -1428,8 +1428,15 @@ fhandler_pipe::lseek (off_t offset, int whence)
|
||||
return -1;
|
||||
}
|
||||
|
||||
#ifdef DEBUGGING
|
||||
#define nameparm name
|
||||
#else
|
||||
#define nameparm
|
||||
#endif
|
||||
|
||||
void
|
||||
fhandler_base::set_inheritance (HANDLE &h, int not_inheriting, const char *name)
|
||||
fhandler_base::set_inheritance (HANDLE &h, int not_inheriting, const char *nameparm)
|
||||
#undef nameparm
|
||||
{
|
||||
HANDLE newh;
|
||||
|
||||
|
Reference in New Issue
Block a user