summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Peres <martin.peres@linux.intel.com>2015-01-19 10:52:05 +0200
committerKenneth Graunke <kenneth@whitecape.org>2015-01-19 01:23:07 -0800
commit7a182d233542889ea9e3f8091eaab0a2386f90fc (patch)
tree7f4e2822e1a24b0f484ecc3cd3bdfdce5f6890b0
parentd74a817b86f7131c2cb1ab8916d4d12f718b3977 (diff)
mesa: fix a trivial spelling mistake
Signed-off-by: Martin Peres <martin.peres@linux.intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
-rw-r--r--src/mesa/main/feedback.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/feedback.c b/src/mesa/main/feedback.c
index 9ea0b92f31f..6bc4294f9c7 100644
--- a/src/mesa/main/feedback.c
+++ b/src/mesa/main/feedback.c
@@ -89,7 +89,7 @@ _mesa_FeedbackBuffer( GLsizei size, GLenum type, GLfloat *buffer )
ctx->Feedback.Type = type;
ctx->Feedback.BufferSize = size;
ctx->Feedback.Buffer = buffer;
- ctx->Feedback.Count = 0; /* Becaues of this. */
+ ctx->Feedback.Count = 0; /* Because of this. */
}