summaryrefslogtreecommitdiff
path: root/src/mesa
diff options
context:
space:
mode:
authorAdam Jackson <ajax@freedesktop.org>2005-05-11 01:33:50 +0000
committerAdam Jackson <ajax@freedesktop.org>2005-05-11 01:33:50 +0000
commit1243b829bb776478619c16cf140ecbd2efd68b0d (patch)
tree0a72e8959d6a352a76ad7bceeac53e91cba8f7a3 /src/mesa
parent2fcaf7a529f1e8bbdfbea6c8d9d6703adf5f17ba (diff)
int -> size_t to fix compile on LP64.
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/shader/grammar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/shader/grammar.h b/src/mesa/shader/grammar.h
index 3b537f6040..591e38aefa 100644
--- a/src/mesa/shader/grammar.h
+++ b/src/mesa/shader/grammar.h
@@ -38,7 +38,7 @@ extern "C" {
void grammar_alloc_free (void *);
void *grammar_alloc_malloc (size_t);
void *grammar_alloc_realloc (void *, size_t, size_t);
-void *grammar_memory_copy (void *, const void *, unsigned int);
+void *grammar_memory_copy (void *, const void *, size_t);
int grammar_string_compare (const byte *, const byte *);
int grammar_string_compare_n (const byte *, const byte *, size_t);
byte *grammar_string_copy (byte *, const byte *);