IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 28, 2004, 8:40:04 PM (22 years ago)
Author:
eugene
Message:

fixes for -Wall -Werror (mostly get_argument lines)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/opihi/cmd.astro/flux.c

    r2598 r2843  
    44 
    55  int i, j, k, xmin, ymin, xmax, ymax;
    6   int oldsignal;
     6  void *oldsignal;
    77  double ax, ay, s, S, flux;
    88  double bx[5], by[5], x[5], y[5], bb[5];
     
    5151   we have to add up the angles for concave contours */
    5252  flux = 0;
    53   oldsignal = (int) signal (SIGINT, handle_interrupt);
     53  oldsignal = signal (SIGINT, handle_interrupt);
    5454  interrupt = FALSE;
    5555  for (j = ymin; (j < ymax) && !interrupt; j++) {
     
    6868    }
    6969  }
    70   signal (SIGINT, (void *) oldsignal);
     70  signal (SIGINT, oldsignal);
    7171
    7272  fprintf (GetOutfile(), "flux: %f\n", flux);
Note: See TracChangeset for help on using the changeset viewer.