From 7f0dc8b815a7d0e0f66e82b55114c89793babf69 Mon Sep 17 00:00:00 2001 From: Robert Kessl Date: Thu, 24 Jul 2014 10:15:35 +0200 Subject: [PATCH] tableprinter: size units are now static --- ucw/table-types.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ucw/table-types.c b/ucw/table-types.c index 85f123cb..1894a9a6 100644 --- a/ucw/table-types.c +++ b/ucw/table-types.c @@ -16,7 +16,7 @@ /** xt_size **/ -struct unit_definition xtype_units_size[] = { +static struct unit_definition xtype_units_size[] = { [SIZE_UNIT_BYTE] = { "", 1LLU, 1 }, [SIZE_UNIT_KILOBYTE] = { "KB", 1024LLU, 1 }, [SIZE_UNIT_MEGABYTE] = { "MB", 1024LLU * 1024LLU, 1 }, -- 2.39.5