summaryrefslogtreecommitdiffstats
path: root/libsmartcols
diff options
context:
space:
mode:
Diffstat (limited to 'libsmartcols')
-rw-r--r--libsmartcols/src/table_print.c9
1 files changed, 7 insertions, 2 deletions
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