return mp_printf(pool, "%"PRIu64"%s", curr_val, xtype_units_size[out_units].unit);
}
-static const char * xt_size_fmt_parse(const char *opt_str, u32 *dest, struct mempool *pool UNUSED)
+static const char * xt_size_fmt_parse(const char *opt_str, u32 *dest, struct mempool *pool)
{
if(opt_str == NULL) {
return "NULL is not supported as a column argument.";
return NULL;
}
-static const char *xt_size_parse(const char *str, void *dest, struct mempool *pool UNUSED)
+static const char *xt_size_parse(const char *str, void *dest, struct mempool *pool)
{
errno = 0;
char *units_start = NULL;
return mp_printf(pool, "Invalid column format option: '%s'.", opt_str);
}
-static const char *xt_timestamp_parse(const char *str, void *dest, struct mempool *pool UNUSED)
+static const char *xt_timestamp_parse(const char *str, void *dest, struct mempool *pool)
{
errno = 0;
char *parse_end = NULL;