diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2015-12-27 20:43:19 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@member.fsf.org> | 2015-12-27 20:43:19 +0100 |
commit | f2c5ac590d442a32e2d5cd77af776a05b977b949 (patch) | |
tree | 0dc1859835688927e127920e2ca3f89ff9012a28 /src/stdio | |
parent | fix errors (diff) | |
download | slibc-f2c5ac590d442a32e2d5cd77af776a05b977b949.tar.gz slibc-f2c5ac590d442a32e2d5cd77af776a05b977b949.tar.bz2 slibc-f2c5ac590d442a32e2d5cd77af776a05b977b949.tar.xz |
fix errors and warnings
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
Diffstat (limited to 'src/stdio')
-rw-r--r-- | src/stdio/printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdio/printf.c b/src/stdio/printf.c index 53be281..0c6d2cf 100644 --- a/src/stdio/printf.c +++ b/src/stdio/printf.c @@ -482,7 +482,7 @@ int dprintf(int fd, const char* restrict format, ...) * * @since Always. */ -int sockprintf(int fd, int flags, const char* format restrict, ...) +int sockprintf(int fd, int flags, const char* restrict format, ...) { V(sockprintf(fd, flags, format, args)); } |