summaryrefslogtreecommitdiff
path: root/src/glut/glx/glut_gamemode.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-11-10 17:23:02 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-11-10 17:23:02 +0000
commitdb6aa58267cad3f502f03ab80b9deb6b75320a91 (patch)
tree52d7cc352e2e7190b19b79ffdfb21c704b67dff1 /src/glut/glx/glut_gamemode.c
parent8e3366fda795797d92afb6877cd280cf96a6d4e7 (diff)
patched to silence compiler warnings (Martin Lindhe)
Diffstat (limited to 'src/glut/glx/glut_gamemode.c')
-rw-r--r--src/glut/glx/glut_gamemode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glut/glx/glut_gamemode.c b/src/glut/glx/glut_gamemode.c
index 004f325a06..729711d96b 100644
--- a/src/glut/glx/glut_gamemode.c
+++ b/src/glut/glx/glut_gamemode.c
@@ -162,7 +162,7 @@ findMatch(DisplayMode * dmodes, int ndmodes,
{
DisplayMode *found;
int *bestScore, *thisScore;
- int i, j, numok, result, worse, better;
+ int i, j, numok, result = 0, worse, better;
found = NULL;
numok = 1; /* "num" capability is indexed from 1,
@@ -386,7 +386,7 @@ static int
parseCriteria(char *word, Criterion * criterion)
{
char *cstr, *vstr, *response;
- int comparator, value;
+ int comparator, value = 0;
cstr = strpbrk(word, "=><!~");
if (cstr) {