Chromium Code Reviews| Index: fusl/src/stdio/putw.c |
| diff --git a/fusl/src/stdio/putw.c b/fusl/src/stdio/putw.c |
| index 0ff9d7fbffb98a5d5919a3e8658678095674a3b7..74780710b2b97d9e071591ccee694ab0c7f933fe 100644 |
| --- a/fusl/src/stdio/putw.c |
| +++ b/fusl/src/stdio/putw.c |
| @@ -1,7 +1,6 @@ |
| #define _GNU_SOURCE |
| #include <stdio.h> |
| -int putw(int x, FILE *f) |
| -{ |
| - return (int)fwrite(&x, sizeof x, 1, f)-1; |
| +int putw(int x, FILE* f) { |
| + return (int)fwrite(&x, sizeof x, 1, f) - 1; |
| } |