diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:28:20 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:28:20 +0000 |
commit | fb0cbe6e7287d635a5f368e055cc0aae6ed50125 (patch) | |
tree | 24940f60afb7e084ca0760710bf9d1ffd21c384a /src/fc/fsio.c | |
parent | ca219ad2fc4f392505d378dfa5a2b34d33de6d61 (diff) |
XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folksxf86-4_3_99_16
Diffstat (limited to 'src/fc/fsio.c')
-rw-r--r-- | src/fc/fsio.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/fc/fsio.c b/src/fc/fsio.c index b5d9de0..6f589c8 100644 --- a/src/fc/fsio.c +++ b/src/fc/fsio.c @@ -23,7 +23,7 @@ * * Author: Dave Lemke, Network Computing Devices, Inc */ -/* $XFree86: xc/lib/font/fc/fsio.c,v 3.16 2002/05/31 18:45:49 dawes Exp $ */ +/* $XFree86: xc/lib/font/fc/fsio.c,v 3.17 2003/05/27 22:26:49 tsi Exp $ */ /* * font server i/o routines */ @@ -146,7 +146,7 @@ _fs_connect(char *servername, int *err) int _fs_fill (FSFpePtr conn) { - long avail, need; + long avail; long bytes_read; Bool waited = FALSE; @@ -156,8 +156,7 @@ _fs_fill (FSFpePtr conn) * Don't go overboard here; stop reading when we've * got enough to satisfy the pending request */ - while ((need = conn->inNeed - (conn->inBuf.insert - - conn->inBuf.remove)) > 0) + while ((conn->inNeed - (conn->inBuf.insert - conn->inBuf.remove)) > 0) { avail = conn->inBuf.size - conn->inBuf.insert; /* |