IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 33539


Ignore:
Timestamp:
Mar 15, 2012, 3:16:37 PM (14 years ago)
Author:
eugene
Message:

fclose should be close

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20111122/Ohana/src/libdvo/src/HostTable.c

    r33536 r33539  
    301301        // check on the status of this and report any output?
    302302        fprintf (stdout, "job finished for %s (%d)\n", host->hostname, pid);
    303         fclose (host->stdio[HOST_STDIN]);
     303        close (host->stdio[HOST_STDIN]);
    304304
    305305        // read stdout
     
    308308        write (STDOUT_FILENO, host->stdout.buffer, host->stdout.Nbuffer);
    309309        FlushIOBuffer (&host->stdout);
    310         fclose (host->stdio[HOST_STDOUT]);
     310        close (host->stdio[HOST_STDOUT]);
    311311        fprintf (stdout, "\n");
    312312           
     
    316316        write (STDOUT_FILENO, host->stderr.buffer, host->stderr.Nbuffer);
    317317        FlushIOBuffer (&host->stderr);
    318         fclose (host->stdio[HOST_STDERR]);
     318        close (host->stdio[HOST_STDERR]);
    319319        fprintf (stdout, "\n");
    320320
Note: See TracChangeset for help on using the changeset viewer.