b43: LP-PHY: Fix a bug in the B2062 channel tune path
[pandora-kernel.git] / scripts / basic / fixdep.c
index 8912c0f..72c1520 100644 (file)
@@ -373,10 +373,11 @@ void print_deps(void)
 void traps(void)
 {
        static char test[] __attribute__((aligned(sizeof(int)))) = "CONF";
+       int *p = (int *)test;
 
-       if (*(int *)test != INT_CONF) {
+       if (*p != INT_CONF) {
                fprintf(stderr, "fixdep: sizeof(int) != 4 or wrong endianess? %#x\n",
-                       *(int *)test);
+                       *p);
                exit(2);
        }
 }