diff options
Diffstat (limited to 'src/interface.c')
-rw-r--r-- | src/interface.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/interface.c b/src/interface.c index 5b754b504..76770a15f 100644 --- a/src/interface.c +++ b/src/interface.c @@ -811,23 +811,23 @@ static void printInterfaceOutBuffer(Interface * interface) } /* From ioops.h: */ -void registerIO( struct ioOps *ops ) +void registerIO(struct ioOps *ops) { - assert( ops != NULL ); + assert(ops != NULL); ops->next = ioList; ioList = ops; ops->prev = NULL; - if( ops->next ) + if (ops->next) ops->next->prev = ops; } -void deregisterIO( struct ioOps *ops ) +void deregisterIO(struct ioOps *ops) { - assert( ops != NULL ); + assert(ops != NULL); - if( ioList == ops ) + if (ioList == ops) ioList = ops->next; - else if( ops->prev != NULL ) + else if (ops->prev != NULL) ops->prev->next = ops->next; } |