Changeset 124

Show
Ignore:
Timestamp:
06.01.2007 22:08:01 (2 years ago)
Author:
decoder
Message:

Fixed kill_pid, missing comma

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/devel/FuzzyOcr/Config.pm

    r119 r124  
    9595    if ($pid) { 
    9696        infolog("Sending SIGTERM to pid: $pid",2); 
    97         my $ret = kill POSIX::SIGTERM $pid; 
     97        my $ret = kill POSIX::SIGTERM, $pid; 
    9898        # Wait for zombie process if the process is a zombie (i.e. SIGTERM didn't work) 
    9999        wait();