diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-03-18 04:17:59 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-03-18 04:17:59 +0000 |
commit | 9aa7f2005d78f1b51376f66d639bd54a6396e915 (patch) | |
tree | 69043fb5559ff9189f5482500a1d50e6b290b15b | |
parent | 179f41778880d0a233435f5c9ed04e17316f479a (diff) |
declare const id argument const for probe_{ext2,ext3,cramfs}
-rw-r--r-- | e2fsprogs/blkid/probe.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/e2fsprogs/blkid/probe.c b/e2fsprogs/blkid/probe.c index 5ee8a200e..03bbc749c 100644 --- a/e2fsprogs/blkid/probe.c +++ b/e2fsprogs/blkid/probe.c @@ -98,7 +98,7 @@ static void get_ext2_info(blkid_dev dev, unsigned char *buf) static int probe_ext3(int fd __BLKID_ATTR((unused)), blkid_cache cache __BLKID_ATTR((unused)), blkid_dev dev, - struct blkid_magic *id __BLKID_ATTR((unused)), + const struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) { struct ext2_super_block *es; @@ -125,7 +125,7 @@ static int probe_ext3(int fd __BLKID_ATTR((unused)), static int probe_ext2(int fd __BLKID_ATTR((unused)), blkid_cache cache __BLKID_ATTR((unused)), blkid_dev dev, - struct blkid_magic *id __BLKID_ATTR((unused)), + const struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) { struct ext2_super_block *es; @@ -307,7 +307,7 @@ static int probe_romfs(int fd __BLKID_ATTR((unused)), static int probe_cramfs(int fd __BLKID_ATTR((unused)), blkid_cache cache __BLKID_ATTR((unused)), blkid_dev dev, - struct blkid_magic *id __BLKID_ATTR((unused)), + const struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) { struct cramfs_super_block *csb; |