diff options
author | Tom Stellard <[email protected]> | 2014-07-28 16:40:05 -0400 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2014-07-28 16:40:05 -0400 |
commit | 5fe20592d4564a259858802457a79d8016838eb0 (patch) | |
tree | 1b5eed2812ff28c96b791e533713fe1da45c67b2 | |
parent | cc1e1da24a6c535617d9fb38858d48d8c2999e68 (diff) |
util: Fix typo
Spotted by okias on IRC.
-rw-r--r-- | src/gallium/auxiliary/util/u_math.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_math.h b/src/gallium/auxiliary/util/u_math.h index f6dcb228fa5..d956fa1c975 100644 --- a/src/gallium/auxiliary/util/u_math.h +++ b/src/gallium/auxiliary/util/u_math.h @@ -817,7 +817,7 @@ util_memcpy_cpu_to_le32(void * restrict dest, const void * restrict src, size_t { #ifdef PIPE_ARCH_BIG_ENDIAN size_t i, e; - asset(n % 4 == 0); + assert(n % 4 == 0); for (i = 0, e = n / 4; i < e; i++) { uint32_t * restrict d = (uint32_t* restrict)dest; |