add some gcc 4.0 fixes
[openwrt.git] / openwrt / package / linux / kernel-source / drivers / net / hnd / bcmutils.c
index 0b704d4..1b37c51 100644 (file)
@@ -745,7 +745,7 @@ crc32(
     /* handle bulk of data as 32-bit words */
     pend = pdata + (nbytes & 0xfffffffc);
     while (pdata < pend) {
-       *tptr = *((ulong *)pdata)++;
+       *tptr = (*((ulong *)pdata))++;
         CRC_INNER_LOOP(32, crc, tmp[0]);
         CRC_INNER_LOOP(32, crc, tmp[1]);
         CRC_INNER_LOOP(32, crc, tmp[2]);
This page took 0.02115 seconds and 4 git commands to generate.