diff options
author | José Fonseca <[email protected]> | 2009-06-18 12:52:10 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-06-18 14:54:09 +0100 |
commit | d609df1daec552113a8385330b680b293ef862eb (patch) | |
tree | 39b25740fe1e0698b28715da266f91f54603e344 /src/gallium/drivers/trace/tr_dump.c | |
parent | 2af0173e9e4eefe910c6011038e7346091a9b2a4 (diff) |
trace: Use size_t consistently.
Diffstat (limited to 'src/gallium/drivers/trace/tr_dump.c')
-rw-r--r-- | src/gallium/drivers/trace/tr_dump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/trace/tr_dump.c b/src/gallium/drivers/trace/tr_dump.c index 3a1409e95a7..643587ab427 100644 --- a/src/gallium/drivers/trace/tr_dump.c +++ b/src/gallium/drivers/trace/tr_dump.c @@ -451,11 +451,11 @@ void trace_dump_float(double value) } void trace_dump_bytes(const void *data, - long unsigned size) + size_t size) { static const char hex_table[16] = "0123456789ABCDEF"; const uint8_t *p = data; - long unsigned i; + size_t i; if (!dumping) return; |