Chromium Code Reviews| Index: fusl/src/stdio/setlinebuf.c |
| diff --git a/fusl/src/stdio/setlinebuf.c b/fusl/src/stdio/setlinebuf.c |
| index b93c4d6a1e1671a613aee5a86fd40600da02e954..e6db70169b374c9a1a61a3eb5fae0c17abd7a6fb 100644 |
| --- a/fusl/src/stdio/setlinebuf.c |
| +++ b/fusl/src/stdio/setlinebuf.c |
| @@ -1,7 +1,6 @@ |
| #define _GNU_SOURCE |
| #include <stdio.h> |
| -void setlinebuf(FILE *f) |
| -{ |
| - setvbuf(f, 0, _IOLBF, 0); |
| +void setlinebuf(FILE* f) { |
| + setvbuf(f, 0, _IOLBF, 0); |
| } |