From: Tom Stellard Date: Mon, 28 Jul 2014 20:40:05 +0000 (-0400) Subject: util: Fix typo X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5fe20592d4564a259858802457a79d8016838eb0;p=mesa.git util: Fix typo Spotted by okias on IRC. --- 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;