diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-07-15 21:03:11 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-07-15 22:34:40 -0400 |
commit | e9f3d2d508bfd9fb5b54e82994bda365a71eb864 (patch) | |
tree | 5cbc33e5f3b497641e5c8818ced20feb8c94780b /src/bootchart/bootchart.c | |
parent | 8201af08fa09c2bd0f005fbe262f27e2c5bd2d86 (diff) |
Constify ConfigTableItem tables
Diffstat (limited to 'src/bootchart/bootchart.c')
-rw-r--r-- | src/bootchart/bootchart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootchart/bootchart.c b/src/bootchart/bootchart.c index 01a5bf18ef..8e849da59c 100644 --- a/src/bootchart/bootchart.c +++ b/src/bootchart/bootchart.c @@ -132,7 +132,7 @@ static void parse_conf(void) { return; r = config_parse(NULL, BOOTCHART_CONF, f, - NULL, config_item_table_lookup, (void*) items, true, false, NULL); + NULL, config_item_table_lookup, items, true, false, NULL); if (r < 0) log_warning("Failed to parse configuration file: %s", strerror(-r)); |