IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 21, 2007, 2:10:20 PM (19 years ago)
Author:
eugene
Message:

convert str_to_time and related functions to ohana_...; various cleanups for -Wall -Werror

Location:
trunk/Ohana/src/relphot/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/relphot/src/args.c

    r9633 r14590  
    1111  if ((N = get_argument (argc, argv, "-time"))) {
    1212    remove_argument (N, &argc, argv);
    13     if (!str_to_time (argv[N], &TSTART)) {
     13    if (!ohana_str_to_time (argv[N], &TSTART)) {
    1414      fprintf (stderr, "ERROR: syntax error\n");
    1515      return (FALSE);
    1616    }
    1717    remove_argument (N, &argc, argv);
    18     if (!str_to_dtime (argv[N], &trange)) {
    19       if (!str_to_time (argv[N], &TSTOP)) {
     18    if (!ohana_str_to_dtime (argv[N], &trange)) {
     19      if (!ohana_str_to_time (argv[N], &TSTOP)) {
    2020        fprintf (stderr, "ERROR: syntax error\n");
    2121        return (FALSE);
  • trunk/Ohana/src/relphot/src/initialize.c

    r12332 r14590  
    3030    fprintf (stderr, "current parameter settings:\n");
    3131    if (TimeSelect) {
    32       fprintf (stderr, "TimeSelect: TRUE (%s - %s)\n", sec_to_date (TSTART), sec_to_date (TSTOP));
     32      fprintf (stderr, "TimeSelect: TRUE (%s - %s)\n", ohana_sec_to_date (TSTART), ohana_sec_to_date (TSTOP));
    3333    } else {
    3434      fprintf (stderr, "TimeSelect: FALSE\n");
  • trunk/Ohana/src/relphot/src/plotstuff.c

    r14382 r14590  
    8181
    8282  float *values;
    83   int i, Nbytes;
     83  int i;
    8484
    8585  if (Npts < 1) return;
Note: See TracChangeset for help on using the changeset viewer.