From: Robert Kessl Date: Thu, 24 Jul 2014 08:15:35 +0000 (+0200) Subject: tableprinter: size units are now static X-Git-Tag: v6.1~3^2~52 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=7f0dc8b815a7d0e0f66e82b55114c89793babf69;p=libucw.git tableprinter: size units are now static --- 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 },