Chromium Code Reviews| Index: fusl/src/string/bcmp.c |
| diff --git a/fusl/src/string/bcmp.c b/fusl/src/string/bcmp.c |
| index 87c6007ee3ccf47902a847d1496bf31508222cef..b1a0b3c4ebd383e1e75d9f0252273388f8a20e72 100644 |
| --- a/fusl/src/string/bcmp.c |
| +++ b/fusl/src/string/bcmp.c |
| @@ -2,7 +2,6 @@ |
| #include <string.h> |
| #include <strings.h> |
| -int bcmp(const void *s1, const void *s2, size_t n) |
| -{ |
| - return memcmp(s1, s2, n); |
| +int bcmp(const void* s1, const void* s2, size_t n) { |
| + return memcmp(s1, s2, n); |
| } |