[Libreoffice-commits] core.git: sal/osl
Stephan Bergmann
sbergman at redhat.com
Fri Feb 10 08:00:35 UTC 2017
sal/osl/unx/backtrace.c | 2 ++
1 file changed, 2 insertions(+)
New commits:
commit 022da89fee9cefd425c952880432ecdbd5d39e01
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Fri Feb 10 08:59:52 2017 +0100
-Werror=unused-parameter
Change-Id: I63e466f8a1e2fbbf1b1bd84f491b37026909b1eb
diff --git a/sal/osl/unx/backtrace.c b/sal/osl/unx/backtrace.c
index 5936910..1d9a58b 100644
--- a/sal/osl/unx/backtrace.c
+++ b/sal/osl/unx/backtrace.c
@@ -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
More information about the Libreoffice-commits
mailing list