summaryrefslogtreecommitdiff
path: root/src/mesa/pipe
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@tungstengraphics.com>2008-02-06 14:37:24 +0900
committerBen Skeggs <skeggsb@gmail.com>2008-02-15 13:50:31 +1100
commit7ff0b6782a8fc24c4d8df2535fa070b10c416dfa (patch)
treee52a3614870577431c58f08bd1df210667a86a49 /src/mesa/pipe
parentd432583d69fbd68bef79f1bf2ab0976ea67ed0bc (diff)
gallium: Add forgotten return type.
Diffstat (limited to 'src/mesa/pipe')
-rw-r--r--src/mesa/pipe/util/p_debug.c2
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 faa093e57c..9303c970cc 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();