Fix indentation.

svn path=/trunk/; revision=32886
This commit is contained in:
Guy Harris 2010-05-19 03:50:09 +00:00
parent bcba2a44e3
commit b4f61dfe67
1 changed files with 17 additions and 17 deletions

View File

@ -1904,23 +1904,23 @@ capture(void)
if (!ret) if (!ret)
return FALSE; return FALSE;
/* the actual capture loop /* the actual capture loop
* *
* XXX - glib doesn't seem to provide any event based loop handling. * XXX - glib doesn't seem to provide any event based loop handling.
* *
* XXX - for whatever reason, * XXX - for whatever reason,
* calling g_main_loop_new() ends up in 100% cpu load. * calling g_main_loop_new() ends up in 100% cpu load.
* *
* But that doesn't matter: in UNIX we can use select() to find an input * But that doesn't matter: in UNIX we can use select() to find an input
* source with something to do. * source with something to do.
* *
* But that doesn't matter because we're in a CLI (that doesn't need to * But that doesn't matter because we're in a CLI (that doesn't need to
* update a GUI or something at the same time) so it's OK if we block * update a GUI or something at the same time) so it's OK if we block
* trying to read from the pipe. * trying to read from the pipe.
* *
* So all the stuff in USE_TSHARK_SELECT could be removed unless I'm * So all the stuff in USE_TSHARK_SELECT could be removed unless I'm
* wrong (but I leave it there in case I am...). * wrong (but I leave it there in case I am...).
*/ */
#ifdef USE_TSHARK_SELECT #ifdef USE_TSHARK_SELECT
FD_ZERO(&readfds); FD_ZERO(&readfds);