From 59879322e629b7b929c4643d84ec3e372633c693 Mon Sep 17 00:00:00 2001 From: Ruediger Meier Date: Tue, 13 Jun 2017 11:08:10 +0200 Subject: libsmartcols: fix warning "unused parameter" Noticed on OSX. Signed-off-by: Ruediger Meier --- libsmartcols/src/table_print.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'libsmartcols') diff --git a/libsmartcols/src/table_print.c b/libsmartcols/src/table_print.c index 8e37c80cb..115212101 100644 --- a/libsmartcols/src/table_print.c +++ b/libsmartcols/src/table_print.c @@ -1656,9 +1656,9 @@ int scols_print_table(struct libscols_table *tb) * * Returns: 0, a negative value in case of an error. */ +#ifdef HAVE_OPEN_MEMSTREAM int scols_print_table_to_string(struct libscols_table *tb, char **data) { -#ifdef HAVE_OPEN_MEMSTREAM FILE *stream, *old_stream; size_t sz; int rc; @@ -1680,8 +1680,13 @@ int scols_print_table_to_string(struct libscols_table *tb, char **data) scols_table_set_stream(tb, old_stream); return rc; +} #else +int scols_print_table_to_string( + struct libscols_table *tb __attribute__((__unused__)), + char **data __attribute__((__unused__))) +{ return -ENOSYS; -#endif } +#endif -- cgit v1.2.3-55-g7522