Re: [Spice-devel] [PATCH 1/2] python: Fix -Wunused-parameter

2014-09-03 Thread Marc-André Lureau
ack - Original Message - > Although the most part of the parameters marked as unused are actually > being used for a few functions, a bunch of warnings can be seen when > the code is compiled with "-Wall -Wextra". As adding the unused attribute > means that the variable/parameter is meant

[Spice-devel] [PATCH 1/2] python: Fix -Wunused-parameter

2014-09-03 Thread Fabiano FidĂȘncio
Although the most part of the parameters marked as unused are actually being used for a few functions, a bunch of warnings can be seen when the code is compiled with "-Wall -Wextra". As adding the unused attribute means that the variable/parameter is meant to be *possibly* unused, we're safe adding