From ed3c5c90e5da426480613c6cf4b8b2be526f0398 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 29 Jun 2000 08:30:03 +0000 Subject: [PATCH] (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(-) diff --git a/lib/mountlist.c b/lib/mountlist.c index 7d27a14a6e..4784140a14 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 -- 2.30.2