From 5fe20592d4564a259858802457a79d8016838eb0 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Mon, 28 Jul 2014 16:40:05 -0400 Subject: [PATCH] util: Fix typo Spotted by okias on IRC. --- src/gallium/auxiliary/util/u_math.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2