Changeset 124 for trunk/devel

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

Fixed kill_pid, missing comma

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • 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();