Fix a bunch of -Wcast-qual warnings in cd9660_util.c, by using

__DECONST.  No functional change.

MFC after:	3 days
This commit is contained in:
Dimitry Andric 2015-01-29 20:40:25 +00:00
parent 09bb4a314a
commit 03ce3d7219
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=277899

View File

@ -80,7 +80,8 @@ isochar(isofn, isoend, joliet_level, c, clen, flags, handle)
inbuf[2]='\0';
inp = inbuf;
outp = outbuf;
cd9660_iconv->convchr(handle, (const char **)&inp, &i, &outp, &j);
cd9660_iconv->convchr(handle, __DECONST(const char **, &inp), &i,
&outp, &j);
len -= j;
if (clen) *clen = len;
*c = '\0';
@ -121,7 +122,8 @@ isofncmp(fn, fnlen, isofn, isolen, joliet_level, flags, handle, lhandle)
u_char *fnend = fn + fnlen, *isoend = isofn + isolen;
for (; fn < fnend; ) {
d = sgetrune(fn, fnend - fn, (char const **)&fn, flags, lhandle);
d = sgetrune(fn, fnend - fn, __DECONST(const char **, &fn),
flags, lhandle);
if (isofn == isoend)
return d;
isofn += isochar(isofn, isoend, joliet_level, &c, NULL, flags, handle);