summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryn M. Reeves <bmr@redhat.com>2016-07-01 14:18:38 +0100
committerBryn M. Reeves <bmr@redhat.com>2016-07-05 19:53:16 +0100
commitcf6c1665f12b45e72202efaa4ea40ec623c24fc4 (patch)
tree0369b41a1de998b0908a119e8455410816f1722c
parente554e375aebcaf56cf436d8c1f4542ace3550a9a (diff)
downloadlvm2-cf6c1665f12b45e72202efaa4ea40ec623c24fc4.tar.gz
dmstats: fix region deletion message
Make the use of 64-bit format macros consistent with other usage and end the message with a '.'.
-rw-r--r--tools/dmsetup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dmsetup.c b/tools/dmsetup.c
index 4a37f2b80..d003c3b12 100644
--- a/tools/dmsetup.c
+++ b/tools/dmsetup.c
@@ -5034,7 +5034,7 @@ static int _stats_delete(CMD_ARGS)
} dm_stats_walk_while(dms);
} else {
dm_stats_delete_region(dms, region_id);
- log_info("Deleted statistics region %" PRIu64, region_id);
+ log_info("Deleted statistics region " FMTu64 ".\n", region_id);
}
r = 1;