author | schurig <schurig> | 2004-09-10 12:48:25 (UTC) |
---|---|---|
committer | schurig <schurig> | 2004-09-10 12:48:25 (UTC) |
commit | f9fb882141b4a519ae958e6332fb5a8ef717d88c (patch) (side-by-side diff) | |
tree | a97e359f73a0afc98d4a58ba057676cf8da94f13 /rsync/buf.c | |
parent | 85928a3781d9a91b58ea414c0d7982459cc21920 (diff) | |
download | opie-f9fb882141b4a519ae958e6332fb5a8ef717d88c.zip opie-f9fb882141b4a519ae958e6332fb5a8ef717d88c.tar.gz opie-f9fb882141b4a519ae958e6332fb5a8ef717d88c.tar.bz2 |
In old ANSI-C you can't have expressions before variable declarations
(C++ allows this)
-rw-r--r-- | rsync/buf.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/rsync/buf.c b/rsync/buf.c index c978fff..fdd67ee 100644 --- a/rsync/buf.c +++ b/rsync/buf.c @@ -97,9 +97,10 @@ rs_result rs_infilebuf_fill(rs_job_t *job, rs_buffers_t *buf, void *opaque) { - job=job; int len; rs_filebuf_t *fb = (rs_filebuf_t *) opaque; FILE *f = fb->f; + job=job; // fix unused warning + /* This is only allowed if either the buf has no input buffer * yet, or that buffer could possibly be BUF. */ @@ -149,9 +150,10 @@ rs_result rs_infilebuf_fill(rs_job_t *job, rs_buffers_t *buf, rs_result rs_outfilebuf_drain(rs_job_t *job, rs_buffers_t *buf, void *opaque) { - job=job; int present; rs_filebuf_t *fb = (rs_filebuf_t *) opaque; FILE *f = fb->f; + job=job; // fix unused warning + /* This is only allowed if either the buf has no output buffer * yet, or that buffer could possibly be BUF. */ |