Fixed C99 Compiler warning

This commit is contained in:
Christoph Haas 2015-09-11 17:33:04 +02:00
parent 0449c465e7
commit b7f0da1493

View File

@ -59,9 +59,11 @@ struct frag_buffer {
};
#ifdef WINDOW_DEBUG
#define DEBUG(msg, ...) fprintf(stderr, "[WINDOW-DEBUG] (%s:%d) " msg "\n", __FILE__, __LINE__, ##__VA_ARGS__)
#define DEBUG(...) fprintf(stderr, "[WINDOW-DEBUG] (%s:%d)", __FILE__, __LINE__);\
fprintf(stderr, __VA_ARGS__);\
fprintf(stderr, "\n")
#else
#define DEBUG(msg, ...)
#define DEBUG(...)
#endif
#define AFTER(w, o) ((w->window_start + o) % w->length)