diff options
author | dscho <dscho> | 2005-05-15 13:57:51 +0000 |
---|---|---|
committer | dscho <dscho> | 2005-05-15 13:57:51 +0000 |
commit | 8bee4eb990273c3654431467ba6618eb916f030a (patch) | |
tree | f3077e1cb12a4cb778047814583fc0b2f26bb7b2 /libvncserver/zrleoutstream.c | |
parent | be5b1296e4aa4d8a51cd709853408ec0cd7b768b (diff) | |
download | libtdevnc-8bee4eb990273c3654431467ba6618eb916f030a.tar.gz libtdevnc-8bee4eb990273c3654431467ba6618eb916f030a.zip |
ANSIfy, fix some warnings from Linus' sparse
Diffstat (limited to 'libvncserver/zrleoutstream.c')
-rw-r--r-- | libvncserver/zrleoutstream.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libvncserver/zrleoutstream.c b/libvncserver/zrleoutstream.c index d22d649..4efe609 100644 --- a/libvncserver/zrleoutstream.c +++ b/libvncserver/zrleoutstream.c @@ -209,8 +209,7 @@ static int zrleOutStreamOverrun(zrleOutStream *os, return size; } -static inline int zrleOutStreamCheck(zrleOutStream *os, - int size) +static int zrleOutStreamCheck(zrleOutStream *os, int size) { if (os->in.ptr + size > os->in.end) { return zrleOutStreamOverrun(os, size); |