From 15eb2c38a6d7157d81fb3aeb4c30ba5f66097c5d Mon Sep 17 00:00:00 2001 From: uvman Date: Sat, 28 Oct 2006 23:41:41 +0000 Subject: [PATCH] constify string argument. --- ntfsprogs/ntfsclone.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ntfsprogs/ntfsclone.c b/ntfsprogs/ntfsclone.c index 715915f0..08dc6ad2 100644 --- a/ntfsprogs/ntfsclone.c +++ b/ntfsprogs/ntfsclone.c @@ -1312,8 +1312,8 @@ static void print_volume_size(const char *str, s64 bytes) } -static void print_disk_usage(char *spacer, u32 cluster_size, s64 nr_clusters, - s64 inuse) +static void print_disk_usage(const char *spacer, u32 cluster_size, + s64 nr_clusters, s64 inuse) { s64 total, used;