diff options
author | José Fonseca <[email protected]> | 2008-02-06 14:37:24 +0900 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-02-06 14:37:24 +0900 |
commit | 78bce9c2dcd45d1d8706bb9bab3b3a73943de990 (patch) | |
tree | 4cadd0ac29870b960bc285ab651eba9731edb7ae /src/mesa/pipe | |
parent | 81b6a801f79f3caddf4257a014a6aa80029c8d62 (diff) |
gallium: Add forgotten return type.
Diffstat (limited to 'src/mesa/pipe')
-rw-r--r-- | src/mesa/pipe/util/p_debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/util/p_debug.c b/src/mesa/pipe/util/p_debug.c index faa093e57cc..9303c970cca 100644 --- a/src/mesa/pipe/util/p_debug.c +++ b/src/mesa/pipe/util/p_debug.c @@ -53,7 +53,7 @@ void debug_printf(const char *format, ...) } -static INLINE debug_abort(void) +static INLINE void debug_abort(void) { #ifdef WIN32 EngDebugBreak(); |