IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 35138


Ignore:
Timestamp:
Feb 9, 2013, 8:18:31 AM (13 years ago)
Author:
eugene
Message:

minor change

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20130207/Ohana/src/libkapa/src/KapaOpen.c

    r34088 r35138  
    229229    sprintf (line, "%s -name '%s' &", kapa_exec, kapa_name);
    230230  }
    231   if (system (line) == -1) {
     231  int status = system (line);
     232  if (status == -1) {
    232233    fprintf (stderr, "failed to launch kapa\n");
     234    return 0;
     235  }
     236  if (status > 0) {
     237    fprintf (stderr, "error launching kapa\n");
    233238    return 0;
    234239  }
Note: See TracChangeset for help on using the changeset viewer.