comparison common-channel.c @ 276:3cea9d789cca

Stomp on some minor warnings
author Matt Johnston <matt@ucc.asn.au>
date Wed, 08 Mar 2006 12:09:02 +0000
parents 82393badfa24
children e109fb08b8ee
comparison
equal deleted inserted replaced
266:e37b160c414c 276:3cea9d789cca
179 /* Iterate through the channels, performing IO if available */ 179 /* Iterate through the channels, performing IO if available */
180 void channelio(fd_set *readfds, fd_set *writefds) { 180 void channelio(fd_set *readfds, fd_set *writefds) {
181 181
182 struct Channel *channel; 182 struct Channel *channel;
183 unsigned int i; 183 unsigned int i;
184 int ret;
185 184
186 /* iterate through all the possible channels */ 185 /* iterate through all the possible channels */
187 for (i = 0; i < ses.chansize; i++) { 186 for (i = 0; i < ses.chansize; i++) {
188 187
189 channel = ses.channels[i]; 188 channel = ses.channels[i];