From: Ruediger Meier Date: Tue, 13 Jun 2017 09:08:10 +0000 (+0200) Subject: libsmartcols: fix warning "unused parameter" X-Git-Tag: v2.31-rc1~316 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=59879322e629b7b929c4643d84ec3e372633c693;p=thirdparty%2Futil-linux.git libsmartcols: fix warning "unused parameter" Noticed on OSX. Signed-off-by: Ruediger Meier --- diff --git a/libsmartcols/src/table_print.c b/libsmartcols/src/table_print.c index 8e37c80cbb..1152121015 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