diff options
author | Lennart Poettering <lennart@poettering.net> | 2018-11-07 15:25:51 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2018-11-30 16:46:10 +0100 |
commit | a4661181fa702a8bff4644210ba7ea14bea51a4a (patch) | |
tree | b0734c51155cd06b59f7fb9dc20152fcdefb6526 /src/shared/format-table.h | |
parent | format-table: before outputting a color, check if colors are available (diff) | |
download | systemd-a4661181fa702a8bff4644210ba7ea14bea51a4a.tar.xz systemd-a4661181fa702a8bff4644210ba7ea14bea51a4a.zip |
format-table: add option to store/format percent and uint64_t values in cells
Diffstat (limited to '')
-rw-r--r-- | src/shared/format-table.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shared/format-table.h b/src/shared/format-table.h index 9978a8baf2..2db2084062 100644 --- a/src/shared/format-table.h +++ b/src/shared/format-table.h @@ -15,6 +15,8 @@ typedef enum TableDataType { TABLE_TIMESPAN, TABLE_SIZE, TABLE_UINT32, + TABLE_UINT64, + TABLE_PERCENT, _TABLE_DATA_TYPE_MAX, _TABLE_DATA_TYPE_INVALID = -1, } TableDataType; |