Silences warning such as:
main/texobj.c:442:40: warning: ISO C99 requires rest arguments to be used
main/texobj.c:498:58: warning: ISO C99 requires rest arguments to be used
*
* \note For debug purposes only.
*/
-#if 0
static void
incomplete(const struct gl_texture_object *t, const char *fmt, ...)
{
+#if 0
va_list args;
char s[100];
va_end(args);
printf("Texture Obj %d incomplete because: %s\n", t->Name, s);
-}
-#else
-#define incomplete(t, why, ...)
#endif
+}
/**