summaryrefslogtreecommitdiffstats
path: root/src/sysv.c
diff options
context:
space:
mode:
authorChristophe Grenier <[email protected]>2020-06-19 18:13:01 +0200
committerChristophe Grenier <[email protected]>2020-06-19 19:02:41 +0200
commit60b5424f53c3d8606b6d04f32340d6533d6c358f (patch)
tree897e765e9527bba5b03ca0f69b837b4ed8b50835 /src/sysv.c
parent49cd8dbd9dcc04893c491f14672911e0a7dac824 (diff)
Constify a lot of function parameters
Diffstat (limited to 'src/sysv.c')
-rw-r--r--src/sysv.c2
1 files changed, 1 insertions, 1 deletions
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;