diff options
author | Christophe Grenier <[email protected]> | 2020-06-19 18:13:01 +0200 |
---|---|---|
committer | Christophe Grenier <[email protected]> | 2020-06-19 19:02:41 +0200 |
commit | 60b5424f53c3d8606b6d04f32340d6533d6c358f (patch) | |
tree | 897e765e9527bba5b03ca0f69b837b4ed8b50835 /src/sysv.c | |
parent | 49cd8dbd9dcc04893c491f14672911e0a7dac824 (diff) |
Constify a lot of function parameters
Diffstat (limited to 'src/sysv.c')
-rw-r--r-- | src/sysv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |