# HG changeset patch # User Jonathan Schleifer # Date 1225586000 -3600 # Node ID 6ace9600e4b5df184e280c60616a14f2d9abc6c7 # Parent 3b39a56caaaa4f7d87d1a0ed3e0aabc995fd1346 Fix a warning - this time without killing seek code. diff -r 3b39a56caaaa -r 6ace9600e4b5 src/madplug/plugin.c --- a/src/madplug/plugin.c Sun Nov 02 00:15:23 2008 +0000 +++ b/src/madplug/plugin.c Sun Nov 02 01:33:20 2008 +0100 @@ -437,7 +437,11 @@ } else { /* No, re-fill buffer and try again .. */ glong tmppos = skip - (chksize - chkpos); +#ifdef MADPROBE_DEBUG gint tmpres = aud_vfs_fseek(fin, tmppos, SEEK_CUR); +#else + aud_vfs_fseek(fin, tmppos, SEEK_CUR); +#endif LOL("[skipping: %ld -> %d]\n", tmppos, tmpres); next = STATE_GET_NEXT; state = STATE_REBUFFER;