diff options
author | Brian Paul <brianp@vmware.com> | 2009-08-18 15:18:33 -0600 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2009-08-29 09:21:34 +0100 |
commit | aa2514d12d17189b2b6e9ffc51c7092fe35b309d (patch) | |
tree | f3ef5a050991f7048e8148353dd95e1bf7a94b13 /src | |
parent | 556eecea67354068f6e328da6564bef6cb74cb4e (diff) |
llvmpipe: add missing break in xlib _init()
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/winsys/xlib/xlib.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/winsys/xlib/xlib.c b/src/gallium/winsys/xlib/xlib.c index 744e865641..4b71cf7ec3 100644 --- a/src/gallium/winsys/xlib/xlib.c +++ b/src/gallium/winsys/xlib/xlib.c @@ -96,6 +96,7 @@ static void _init( void ) #if defined(GALLIUM_LLVMPIPE) xmesa_set_driver( &xlib_llvmpipe_driver ); #endif + break; case MODE_SOFTPIPE: #if defined(GALLIUM_SOFTPIPE) xmesa_set_driver( &xlib_softpipe_driver ); |