aboutsummaryrefslogtreecommitdiffstats
path: root/src/stdio
diff options
context:
space:
mode:
authorMattias Andrée <maandree@member.fsf.org>2015-12-27 20:43:19 +0100
committerMattias Andrée <maandree@member.fsf.org>2015-12-27 20:43:19 +0100
commitf2c5ac590d442a32e2d5cd77af776a05b977b949 (patch)
tree0dc1859835688927e127920e2ca3f89ff9012a28 /src/stdio
parentfix errors (diff)
downloadslibc-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 '')
-rw-r--r--src/stdio/printf.c2
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));
}