Files
openwrt_archive/net/gatling/patches/010-add_semicolon.patch
Florian Fainelli 16ba0b5687 [package] add gatling web server (#6914)
SVN-Revision: 33044
2012-08-07 16:09:16 +00:00

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
}