12 lines
377 B
Diff
12 lines
377 B
Diff
|
--- gatling-0.11/acc.c 2010-02-05 23:47:29.252861541 +0000
|
||
|
+++ gatling-0.11_new/acc.c 2010-02-05 23:47:54.025348536 +0000
|
||
|
@@ -47,7 +47,7 @@
|
||
|
#if defined(__i386__) || defined(__x86_64__)
|
||
|
return a[0]==b[0] && a[1]==b[1] && a[2]==b[2];
|
||
|
#else
|
||
|
- return ((*(uint32_t*)a ^ *(uint32_t*)b) & 0xffffff) == 0
|
||
|
+ return ((*(uint32_t*)a ^ *(uint32_t*)b) & 0xffffff) == 0;
|
||
|
#endif
|
||
|
}
|
||
|
|