aboutsummaryrefslogtreecommitdiffstats
path: root/src/myfprintf.c
diff options
context:
space:
mode:
authorAvuton Olrich <avuton@gmail.com>2006-08-20 03:11:12 +0000
committerAvuton Olrich <avuton@gmail.com>2006-08-20 03:11:12 +0000
commitaa487e6c75a6a9bd70189707f977fd66ba9c12a7 (patch)
tree6d0e9c2adaefdebe19619863442b6452e3422223 /src/myfprintf.c
parent54a1a9f2b638eeb916e32aa656be5c0c9366ddee (diff)
downloadmpd-aa487e6c75a6a9bd70189707f977fd66ba9c12a7.tar.gz
mpd-aa487e6c75a6a9bd70189707f977fd66ba9c12a7.tar.xz
mpd-aa487e6c75a6a9bd70189707f977fd66ba9c12a7.zip
This fixes 5 potential bugs where the conditional would always be true.
git-svn-id: https://svn.musicpd.org/mpd/trunk@4659 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r--src/myfprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/myfprintf.c b/src/myfprintf.c
index 6f0da2fdd..dac58ab34 100644
--- a/src/myfprintf.c
+++ b/src/myfprintf.c
@@ -36,7 +36,7 @@
static void blockingWrite(const int fd, const char *string, size_t len)
{
while (len) {
- size_t ret = xwrite(fd, string, len);
+ ssize_t ret = xwrite(fd, string, len);
if (ret == len)
return;
if (ret >= 0) {