Skip to content

Commit

Permalink
Apply the proper fix for a gcc unused variable warning, the existing …
Browse files Browse the repository at this point in the history
…fix just triggers another cppcheck warning instead.
  • Loading branch information
stuartm committed May 23, 2013
1 parent cee4662 commit c3b575c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions mythplugins/mythmusic/mythmusic/visualize.cpp
Expand Up @@ -1609,9 +1609,8 @@ void Blank::resize(const QSize &newsize)
}


bool Blank::process(VisualNode *node)
bool Blank::process(VisualNode MUNUSED *node)
{
node = node; // Sometimes I hate -Wall
return false;
}

Expand Down
1 change: 1 addition & 0 deletions mythplugins/mythmusic/mythmusic/visualize.h
Expand Up @@ -19,6 +19,7 @@
// MythTV headers
#include <visual.h>
#include <musicmetadata.h>
#include <mythbaseexp.h>

// MythMusic headers
#include "constants.h"
Expand Down

0 comments on commit c3b575c

Please sign in to comment.