diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2016-10-24 17:21:35 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2016-10-24 17:21:35 +0100 |
commit | 021715e897016212beb4123b25239338ab49707e (patch) | |
tree | f2415ad7343ffca28b536e83a60f18fd51d4a438 /tools | |
parent | 5eda3934885b23ce06f862a56b524ceaab3cb565 (diff) | |
download | lvm2-021715e897016212beb4123b25239338ab49707e.tar.gz |
dmsetup: remove stray '\n' in delete log message
Diffstat (limited to 'tools')
-rw-r--r-- | tools/dmsetup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dmsetup.c b/tools/dmsetup.c index ec64d2495..42f0b0547 100644 --- a/tools/dmsetup.c +++ b/tools/dmsetup.c @@ -5323,7 +5323,7 @@ static int _stats_delete(CMD_ARGS) log_error("Could not delete statistics region"); goto out; } - log_info("Deleted statistics region " FMTu64 ".\n", region_id); + log_info("Deleted statistics region " FMTu64 ".", region_id); } r = 1; |