Avoid more compiler warnings

This commit is contained in:
Matthias Clasen 2011-02-08 07:41:49 -05:00
parent 8d572f5d22
commit 4368a07e02
2 changed files with 7 additions and 7 deletions

View File

@ -561,7 +561,7 @@ static void
g_io_channel_purge (GIOChannel *channel)
{
GError *err = NULL;
GIOStatus status;
GIOStatus status G_GNUC_UNUSED;
g_return_if_fail (channel != NULL);

View File

@ -506,7 +506,7 @@ g_logv (const gchar *log_domain,
* in an out-of-memory situation
*/
gchar buffer[1025];
gsize size;
gsize size G_GNUC_UNUSED;
va_list args2;
G_VA_COPY (args2, args1);