Mark unused vars as comment

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@104 e54a6e83-5905-42d5-8d5c-058d10e6a962


Origin commit data
------------------
Branch: ni/coolstream
Commit: 1b13da2617
Author: mws <mws@e54a6e83-5905-42d5-8d5c-058d10e6a962>
Date: 2009-12-21 (Mon, 21 Dec 2009)



------------------
This commit was generated by Migit
This commit is contained in:
mws
2009-12-21 16:23:09 +00:00
parent c170382c16
commit 5febb97a76
87 changed files with 1685 additions and 1684 deletions

View File

@@ -33,7 +33,7 @@ int fh_gif_id(const char *name)
return(0);
}
inline void m_rend_gif_decodecolormap(unsigned char *cmb,unsigned char *rgbb,ColorMapObject *cm,int s,int l)
inline void m_rend_gif_decodecolormap(unsigned char *cmb,unsigned char *rgbb,ColorMapObject *cm,int /*s*/,int l)
{
GifColorType *cmentry;
int i;
@@ -45,7 +45,7 @@ inline void m_rend_gif_decodecolormap(unsigned char *cmb,unsigned char *rgbb,Col
*(rgbb++)=cmentry->Blue;
}
}
int fh_gif_load(const char *name,unsigned char **buffer,int* xp,int* yp)
int fh_gif_load(const char *name,unsigned char **buffer,int* /*xp*/,int* /*yp*/)
{
int px,py,i,ibxs;
int j;
@@ -114,13 +114,13 @@ int fh_gif_load(const char *name,unsigned char **buffer,int* xp,int* yp)
break;
default:
break;
}
}
}
while( rt!= TERMINATE_RECORD_TYPE );
DGifCloseFile(gft);
return(FH_ERROR_OK);
}
int fh_gif_getsize(const char *name,int *x,int *y, int wanted_width, int wanted_height)
int fh_gif_getsize(const char *name,int *x,int *y, int /*wanted_width*/, int /*wanted_height*/)
{
int px,py;
GifFileType *gft;
@@ -151,7 +151,7 @@ int fh_gif_getsize(const char *name,int *x,int *y, int wanted_width, int wanted_
break;
default:
break;
}
}
}
while( rt!= TERMINATE_RECORD_TYPE );
DGifCloseFile(gft);