Kaydet (Commit) 022da89f authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror=unused-parameter

Change-Id: I63e466f8a1e2fbbf1b1bd84f491b37026909b1eb
üst efed9a75
......@@ -286,6 +286,7 @@ void backtrace_symbols_fd( void **buffer, int size, int fd )
int backtrace( void **buffer, int max_frames )
{
(void)buffer; (void)max_frames;
return 0;
}
......@@ -297,6 +298,7 @@ char ** backtrace_symbols(void * const * buffer, int size)
void backtrace_symbols_fd( void **buffer, int size, int fd )
{
(void)buffer; (void)size; (void)fd;
}
#endif
......
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