summaryrefslogtreecommitdiff
path: root/src/mesa/main/texenvprogram.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-09-23 15:44:37 -0600
committerBrian Paul <brianp@vmware.com>2009-09-24 10:28:09 -0600
commita491e25b1fa8683f538ed0d67a6389f2cdf7e4bc (patch)
treeba9c2bd7ecf2747ff9d46b75a8e4655fbd11b577 /src/mesa/main/texenvprogram.c
parent00ddd4f9e9680132872f98f2d18b52dfc30c6f2f (diff)
mesa: added default case return to silence warning
Diffstat (limited to 'src/mesa/main/texenvprogram.c')
-rw-r--r--src/mesa/main/texenvprogram.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/texenvprogram.c b/src/mesa/main/texenvprogram.c
index 2f3e47e69e..d7e77e759e 100644
--- a/src/mesa/main/texenvprogram.c
+++ b/src/mesa/main/texenvprogram.c
@@ -276,6 +276,7 @@ need_saturate( GLuint mode )
return GL_TRUE;
default:
assert(0);
+ return GL_FALSE;
}
}