From a1fd5e91ffc905bd36e0ff5b22d21fff649b970c Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 29 Jun 2000 08:30:03 +0000 Subject: (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]: Avoid warning by casting result to `char *' to remove `const'. --- lib/mountlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/mountlist.c') diff --git a/lib/mountlist.c b/lib/mountlist.c index 7d27a14a6..4784140a1 100644 --- a/lib/mountlist.c +++ b/lib/mountlist.c @@ -260,7 +260,7 @@ static char * fsp_to_string (const struct statfs *fsp) { # if defined HAVE_F_FSTYPENAME_IN_STATFS - return fsp->f_fstypename; + return (char *) (fsp->f_fstypename); # else return fstype_to_string (fsp->f_type); # endif -- cgit v1.2.3-54-g00ecf