IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

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

fixes for -Wall -Werror (mostly get_argument lines)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/opihi/lib.shell/exec_loop.c

    r2598 r2843  
    33int exec_loop (Macro *loop) {
    44
    5   int n, Nlines, j, status, ThisList, Signal;
     5  void *Signal;
     6  int n, Nlines, j, status, ThisList;
    67  char *outline;
    78 
     
    1920
    2021  /* set up interrupts */
    21   Signal = (int) signal (SIGINT, handle_interrupt);
     22  Signal = signal (SIGINT, handle_interrupt);
    2223  interrupt = FALSE;
    2324
     
    3536    if (loop_break || loop_continue) break;
    3637  }
    37   signal (SIGINT, (void *) Signal);
     38  signal (SIGINT, Signal);
    3839
    3940  /* free up the list and decrement the shell level */
Note: See TracChangeset for help on using the changeset viewer.