diff options
author | Bharat Shetty Barkur <bharat.shetty@gmail.com> | 2009-03-08 12:54:25 -0400 |
---|---|---|
committer | Anand V. Avati <avati@amp.gluster.com> | 2009-03-10 00:55:20 +0530 |
commit | 6a70225b69e7c617cb0ff62124b2687a7027c64a (patch) | |
tree | 656e50004b70e68463dca4994b13b132cbc2817c /libglusterfs | |
parent | d4adb2b0f5e7cd8e91d384f3f9047deab2464647 (diff) |
Fixed two more occurrences of poll_out variables used for logging.
Changed the poll_in variable to poll_out variable at two more places in the code.
Signed-off-by: Anand V. Avati <avati@amp.gluster.com>
Diffstat (limited to 'libglusterfs')
-rw-r--r-- | libglusterfs/src/event.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libglusterfs/src/event.c b/libglusterfs/src/event.c index 4bd26e1e2..e53002e5a 100644 --- a/libglusterfs/src/event.c +++ b/libglusterfs/src/event.c @@ -583,7 +583,7 @@ event_register_epoll (struct event_pool *event_pool, int fd, break; default: gf_log ("epoll", GF_LOG_ERROR, - "invalid poll_out value %d", poll_in); + "invalid poll_out value %d", poll_out); break; } @@ -743,7 +743,7 @@ event_select_on_epoll (struct event_pool *event_pool, int fd, int idx_hint, break; default: gf_log ("epoll", GF_LOG_ERROR, - "invalid poll_out value %d", poll_in); + "invalid poll_out value %d", poll_out); break; } |