diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2007-05-15 23:23:09 +0000 |
---|---|---|
committer | J. Alexander Treuman <jat@spatialrift.net> | 2007-05-15 23:23:09 +0000 |
commit | 6f68587ad59a2e5f606a332b96e55f57a0f9a5fc (patch) | |
tree | 0ee1613c2c0456981d7063aac52bafa2bb664d7f /src/interface.c | |
parent | f63c6ca86d9e1f7e2736df4e66e3fa96ec2890f1 (diff) | |
download | mpd-6f68587ad59a2e5f606a332b96e55f57a0f9a5fc.tar.gz mpd-6f68587ad59a2e5f606a332b96e55f57a0f9a5fc.tar.xz mpd-6f68587ad59a2e5f606a332b96e55f57a0f9a5fc.zip |
Changing "//" comments to "/* */" comments.
git-svn-id: https://svn.musicpd.org/mpd/trunk@6112 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/interface.c')
-rw-r--r-- | src/interface.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interface.c b/src/interface.c index 31785f7e6..fabc2d6e9 100644 --- a/src/interface.c +++ b/src/interface.c @@ -511,7 +511,7 @@ int doIOForInterfaces(void) addInterfacesReadyToReadAndListenSocketToFdSet(&rfds, &fdmax); addInterfacesForBufferFlushToFdSet(&wfds, &fdmax); - // Add fds for all registered IO handlers + /* Add fds for all registered IO handlers */ if( ioList ) { struct ioOps *o = ioList; while( o ) { @@ -530,7 +530,7 @@ int doIOForInterfaces(void) if (selret < 0 && errno == EINTR) break; - // Consume fds for all registered IO handlers + /* Consume fds for all registered IO handlers */ if( ioList ) { struct ioOps *o = ioList; while( o ) { @@ -832,7 +832,7 @@ static void printInterfaceOutBuffer(Interface * interface) interface->send_buf_used = 0; } -// From ioops.h: +/* From ioops.h: */ void registerIO( struct ioOps *ops ) { assert( ops != NULL ); |