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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/opihi/dvo/imrough.c

    r7917 r14590  
    2323  if ((N = get_argument (argc, argv, "-time"))) {
    2424    remove_argument (N, &argc, argv);
    25     if (!str_to_time (argv[N], &tzero)) {
     25    if (!ohana_str_to_time (argv[N], &tzero)) {
    2626      gprint (GP_ERR, "syntax error\n");
    2727      return (FALSE);
    2828    }
    2929    remove_argument (N, &argc, argv);
    30     if (!str_to_dtime (argv[N], &trange)) {
     30    if (!ohana_str_to_dtime (argv[N], &trange)) {
    3131      gprint (GP_ERR, "syntax error\n");
    3232      return (FALSE);
     
    4141  if ((N = get_argument (argc, argv, "-trange"))) {
    4242    remove_argument (N, &argc, argv);
    43     if (!str_to_time (argv[N], &tzero)) {
     43    if (!ohana_str_to_time (argv[N], &tzero)) {
    4444      gprint (GP_ERR, "syntax error\n");
    4545      return (FALSE);
    4646    }
    4747    remove_argument (N, &argc, argv);
    48     if (!str_to_time (argv[N], &tend)) {
     48    if (!ohana_str_to_time (argv[N], &tend)) {
    4949      gprint (GP_ERR, "syntax error\n");
    5050      return (FALSE);
Note: See TracChangeset for help on using the changeset viewer.