diff --git a/libdm/libdm-stats.c b/libdm/libdm-stats.c index 4e5210d71..f239f0169 100644 --- a/libdm/libdm-stats.c +++ b/libdm/libdm-stats.c @@ -2148,6 +2148,7 @@ void dm_histogram_bounds_destroy(struct dm_histogram *bounds) */ static void _scale_bound_value_to_suffix(uint64_t *bound, const char **suffix) { + *suffix = "ns"; if (!(*bound % NSEC_PER_SEC)) { *bound /= NSEC_PER_SEC; *suffix = "s";