diff options
author | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-03-12 22:39:44 +0000 |
---|---|---|
committer | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-03-13 10:23:02 +0000 |
commit | 8506e41dc080e20286709ab93b728aa5162f3c87 (patch) | |
tree | 74f1a3d67909f4931f6c7df0b2ce51a1df04682b /src | |
parent | 192d1cbbdf9f8e2527ef38761195a87517c2d244 (diff) |
gallium: Fix debug_mask_vprintf's example.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/include/pipe/p_debug.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_debug.h b/src/gallium/include/pipe/p_debug.h index f45363f355..f971ad3adc 100644 --- a/src/gallium/include/pipe/p_debug.h +++ b/src/gallium/include/pipe/p_debug.h @@ -121,7 +121,8 @@ uint32_t debug_mask_get(uint32_t uuid); * @code * #define MYDRIVER_UUID 0x12345678 // random 32 bit identifier * - * static inline mydriver_debug(uint32_t what, const char *format, ...) + * static void inline + * mydriver_debug(uint32_t what, const char *format, ...) * { * #ifdef DEBUG * va_list ap; |