util: Fix typo
authorTom Stellard <thomas.stellard@amd.com>
Mon, 28 Jul 2014 20:40:05 +0000 (16:40 -0400)
committerTom Stellard <thomas.stellard@amd.com>
Mon, 28 Jul 2014 20:40:05 +0000 (16:40 -0400)
Spotted by okias on IRC.

src/gallium/auxiliary/util/u_math.h

index f6dcb22..d956fa1 100644 (file)
@@ -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;