diff options
author | Max Kellermann <max@duempel.org> | 2008-09-10 11:41:34 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-10 11:41:34 +0200 |
commit | a580f5fe688e7f987d3cf6ee21f27faed2557b01 (patch) | |
tree | ab0b91ff843fdcaeeef923a56392e6043362e00a /src/client.c | |
parent | a49b1d145e9c496331ac3c37bfbacb169599ddc0 (diff) | |
download | mpd-a580f5fe688e7f987d3cf6ee21f27faed2557b01.tar.gz mpd-a580f5fe688e7f987d3cf6ee21f27faed2557b01.tar.xz mpd-a580f5fe688e7f987d3cf6ee21f27faed2557b01.zip |
client: renamed local variable "selret" to "ret"
It's easier to reuse the variable if it has a more generic name.
Diffstat (limited to 'src/client.c')
-rw-r--r-- | src/client.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client.c b/src/client.c index 8c44f4308..5637c5d82 100644 --- a/src/client.c +++ b/src/client.c @@ -506,7 +506,7 @@ int client_manager_io(void) fd_set wfds; fd_set efds; struct client *client, *n; - int selret; + int ret; int fdmax = 0; FD_ZERO( &efds ); @@ -516,17 +516,17 @@ int client_manager_io(void) registered_IO_add_fds(&fdmax, &rfds, &wfds, &efds); main_notify_lock(); - selret = select(fdmax + 1, &rfds, &wfds, &efds, NULL); + ret = select(fdmax + 1, &rfds, &wfds, &efds, NULL); main_notify_unlock(); - if (selret < 0) { + if (ret < 0) { if (errno == EINTR) return 0; FATAL("select() failed: %s\n", strerror(errno)); } - registered_IO_consume_fds(&selret, &rfds, &wfds, &efds); + registered_IO_consume_fds(&ret, &rfds, &wfds, &efds); getConnections(&rfds); |