Skip to content

Commit

Permalink
Cosmetic fix for unused parameters. For the pedantic types who can't …
Browse files Browse the repository at this point in the history
…stand

-Wall warnings.


git-svn-id: http://svn.mythtv.org/svn/trunk@3722 7dbf422c-18fa-0310-86e9-fd20926502f2
  • Loading branch information
Thor Sigvaldason committed May 25, 2004
1 parent 1e2599c commit 5d4eb6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/libs/libmythtv/osdsurface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ static inline void blendtoargb_8_c(OSDSurface *surf, unsigned char *src,

#if i386
#define movntq(src, dest) movq_r2m(src, dest);
static inline void blendtoargb_8_mmx(OSDSurface *surf, unsigned char *src,
static inline void blendtoargb_8_mmx(OSDSurface * /*surf*/, unsigned char *src,
unsigned char *usrc, unsigned char *vsrc,
unsigned char *alpha, unsigned char *dest)
{
Expand Down Expand Up @@ -606,7 +606,7 @@ static inline void dithertoia44_8_mmx(unsigned char *src, unsigned char *dest,
}
#endif

dithertoia44_8_fun dithertoia44_8_init(OSDSurface *surface)
dithertoia44_8_fun dithertoia44_8_init(OSDSurface* /*surface*/)
{
#if i386
// mmx version seems to be about the same speed, no reason to use it.
Expand Down

0 comments on commit 5d4eb6b

Please sign in to comment.