diff options
author | José Fonseca <[email protected]> | 2008-12-22 16:55:27 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-12-22 16:55:27 +0000 |
commit | ae7e75d6108e8621878083b35a13edc1aca893df (patch) | |
tree | 6d637af9eff90e245d46f97a923ffdc0b0aaa954 /src/gallium/auxiliary/util/u_hash.h | |
parent | 229424b2d79f7ab19c6799795df155c265e3f258 (diff) |
gallium: const correctness.
Diffstat (limited to 'src/gallium/auxiliary/util/u_hash.h')
-rw-r--r-- | src/gallium/auxiliary/util/u_hash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_hash.h b/src/gallium/auxiliary/util/u_hash.h index 76c3513e4a0..8d92b07c85e 100644 --- a/src/gallium/auxiliary/util/u_hash.h +++ b/src/gallium/auxiliary/util/u_hash.h @@ -45,7 +45,7 @@ extern "C" { uint32_t -util_hash_crc32(void *data, size_t size); +util_hash_crc32(const void *data, size_t size); #ifdef __cplusplus |