From 85d608f7ecec2317456059199644e9f940a38e5c Mon Sep 17 00:00:00 2001 From: David Sterba Date: Thu, 29 Sep 2016 15:12:35 +0200 Subject: btrfs-progs: constify string arguments where appropriate Signed-off-by: David Sterba --- string-table.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'string-table.h') diff --git a/string-table.h b/string-table.h index c1695d8d..516ea97a 100644 --- a/string-table.h +++ b/string-table.h @@ -25,9 +25,9 @@ struct string_table { struct string_table *table_create(int columns, int rows); char *table_printf(struct string_table *tab, int column, int row, - char *fmt, ...); + const char *fmt, ...); char *table_vprintf(struct string_table *tab, int column, int row, - char *fmt, va_list ap); + const char *fmt, va_list ap); void table_dump(struct string_table *tab); void table_free(struct string_table *); -- cgit v1.2.3