summaryrefslogtreecommitdiff
path: root/string-table.h
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.com>2015-11-03 00:46:52 +0100
committerDavid Sterba <dsterba@suse.com>2015-11-03 00:55:20 +0100
commit7a9159277538f010b9de0da4ed2134434acd4593 (patch)
tree55e685a92a9e2236b2beffe2aef26f889e31e384 /string-table.h
parent952251481e3ebc9e98204701db5fd4ec2f9ec0f6 (diff)
btrfs-progs: string table: fix whitespace damage
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'string-table.h')
-rw-r--r--string-table.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/string-table.h b/string-table.h
index 657aae4b..c1695d8d 100644
--- a/string-table.h
+++ b/string-table.h
@@ -18,13 +18,11 @@
#define __STRING_TABLE_H__
struct string_table {
-
- int ncols, nrows;
- char *cells[];
-
+ int ncols;
+ int nrows;
+ char *cells[];
};
-
struct string_table *table_create(int columns, int rows);
char *table_printf(struct string_table *tab, int column, int row,
char *fmt, ...);