summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-12-03 06:59:01 -0700
committerBrian Paul <brianp@vmware.com>2009-12-03 06:59:03 -0700
commitddb81f453f0593cc6b9b2c849cbd99fd85e513c5 (patch)
tree8f4ef335adabd48bef4bc2b578295addfef4ca42
parent144d8747a73665f751f3ec4a1ef7278504702ce5 (diff)
readpixperf: fix bogus res.readBuf values
This should have been committed with the previous commit.
-rw-r--r--src/glean/treadpixperf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glean/treadpixperf.h b/src/glean/treadpixperf.h
index 8e710f9..d98aae8 100644
--- a/src/glean/treadpixperf.h
+++ b/src/glean/treadpixperf.h
@@ -50,7 +50,7 @@ public:
int work; // really bool
void sprint(char *s) const;
void print(Environment *env) const;
- const char *readBuf; // "GL_FRONT" or "GL_BACK"
+ char readBuf[10]; // "GL_FRONT" or "GL_BACK"
};
bool pass;