summaryrefslogtreecommitdiffstats
path: root/sbin/fsck_ffs/pass2.c
diff options
context:
space:
mode:
Diffstat (limited to 'sbin/fsck_ffs/pass2.c')
-rw-r--r--sbin/fsck_ffs/pass2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/fsck_ffs/pass2.c b/sbin/fsck_ffs/pass2.c
index 34fda76..4879a34 100644
--- a/sbin/fsck_ffs/pass2.c
+++ b/sbin/fsck_ffs/pass2.c
@@ -230,7 +230,7 @@ pass2check(struct inodesc *idesc)
struct inoinfo *inp;
int n, entrysize, ret = 0;
union dinode *dp;
- char *errmsg;
+ const char *errmsg;
struct direct proto;
char namebuf[MAXPATHLEN + 1];
char pathbuf[MAXPATHLEN + 1];
@@ -461,6 +461,6 @@ static int
blksort(const void *arg1, const void *arg2)
{
- return ((*(struct inoinfo **)arg1)->i_blks[0] -
- (*(struct inoinfo **)arg2)->i_blks[0]);
+ return ((*(struct inoinfo * const *)arg1)->i_blks[0] -
+ (*(struct inoinfo * const *)arg2)->i_blks[0]);
}
OpenPOWER on IntegriCloud