Changeset 128

Show
Ignore:
Timestamp:
03/22/08 21:08:55 (5 months ago)
Author:
msergeant
Message:

Correct style

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/Danga/Socket.pm

    r127 r128  
    10691069            $self->{write_buf_offset} = 0; 
    10701070 
    1071             if($self->{write_set_watch}) { 
    1072               $self->watch_write(0); 
    1073               $self->{write_set_watch} = 0; 
     1071            if ($self->{write_set_watch}) { 
     1072                $self->watch_write(0); 
     1073                $self->{write_set_watch} = 0; 
    10741074            } 
    10751075 
     
    12381238    $event |=  POLLOUT if   $val; 
    12391239 
    1240     if($val && caller ne __PACKAGE__) { 
    1241       # A subclass registered interest, it's now responsible for this. 
    1242       $self->{write_set_watch} = 0; 
     1240    if ($val && caller ne __PACKAGE__) { 
     1241        # A subclass registered interest, it's now responsible for this. 
     1242        $self->{write_set_watch} = 0; 
    12431243    } 
    12441244