From 60b5424f53c3d8606b6d04f32340d6533d6c358f Mon Sep 17 00:00:00 2001 From: Christophe Grenier Date: Fri, 19 Jun 2020 18:13:01 +0200 Subject: Constify a lot of function parameters --- src/sysv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sysv.c') diff --git a/src/sysv.c b/src/sysv.c index 41864e6a..e8ecdb21 100644 --- a/src/sysv.c +++ b/src/sysv.c @@ -91,7 +91,7 @@ static int test_sysv4(const disk_t *disk_car, const struct sysv4_super_block *sb return 0; } -int recover_sysv(disk_t *disk_car, const struct sysv4_super_block *sbd, partition_t *partition,const int verbose, const int dump_ind) +int recover_sysv(const disk_t *disk_car, const struct sysv4_super_block *sbd, partition_t *partition,const int verbose, const int dump_ind) { if(test_sysv4(disk_car, sbd,partition, verbose)!=0) return 1; -- cgit