aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Scott <nathans@sgi.com>2006-06-09 17:13:15 +1000
committerNathan Scott <nathans@sgi.com>2006-06-09 17:13:15 +1000
commitb190f1138b0f30fbe837b3f09fb6ffdb2fc4da24 (patch)
tree319fb258e80786451928f7f98aa85c31b06ba599
parent[XFS] Fix nused counter. It's currently getting set to -1 rather than (diff)
downloadlinux-dev-b190f1138b0f30fbe837b3f09fb6ffdb2fc4da24.tar.xz
linux-dev-b190f1138b0f30fbe837b3f09fb6ffdb2fc4da24.zip
[XFS] Fix broken const use inside local suffix_strtoul routine.
SGI-PV: 904196 SGI-Modid: xfs-linux-melb:xfs-kern:26201a Signed-off-by: Nathan Scott <nathans@sgi.com>
-rw-r--r--fs/xfs/xfs_vfsops.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/xfs_vfsops.c b/fs/xfs/xfs_vfsops.c
index 7550583bd096..918531b64787 100644
--- a/fs/xfs/xfs_vfsops.c
+++ b/fs/xfs/xfs_vfsops.c
@@ -1654,10 +1654,10 @@ xfs_vget(
#define MNTOPT_NOATTR2 "noattr2" /* do not use attr2 attribute format */
STATIC unsigned long
-suffix_strtoul(const char *cp, char **endp, unsigned int base)
+suffix_strtoul(char *s, char **endp, unsigned int base)
{
int last, shift_left_factor = 0;
- char *value = (char *)cp;
+ char *value = s;
last = strlen(value) - 1;
if (value[last] == 'K' || value[last] == 'k') {
@@ -1673,7 +1673,7 @@ suffix_strtoul(const char *cp, char **endp, unsigned int base)
value[last] = '\0';
}
- return simple_strtoul(cp, endp, base) << shift_left_factor;
+ return simple_strtoul((const char *)s, endp, base) << shift_left_factor;
}
STATIC int