aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2020-08-19 11:27:11 -0700
committerRob Landley <rob@landley.net>2020-08-19 16:37:52 -0500
commite04ce13e65ca289d3ee47a3dc3dcd04b647eab78 (patch)
tree9f4c1c2d99874d0e052d98d0d366225ac1631828 /lib
parentf486337d9fc5f5f1cc9435de3233a7073067e3e1 (diff)
downloadtoybox-e04ce13e65ca289d3ee47a3dc3dcd04b647eab78.tar.gz
xputsl: remove unused variable.
Diffstat (limited to 'lib')
-rw-r--r--lib/xwrap.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/xwrap.c b/lib/xwrap.c
index 86905350..5e64007f 100644
--- a/lib/xwrap.c
+++ b/lib/xwrap.c
@@ -159,8 +159,6 @@ void xprintf(char *format, ...)
// Put string with length (does not append newline)
void xputsl(char *s, int len)
{
- int out;
-
xflush(0);
xwrite(0, s, len);
}