IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 5, 2007, 3:16:08 PM (19 years ago)
Author:
jhoblitt
Message:

rename exp_id -> exp_name
rename exp_tag -> exp_id
add add rawExp.exp_tag for use as an external name only

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/pxtag.c

    r10709 r14023  
    2727#include "pxtag.h"
    2828
    29 psString pxGenExpTag(pxConfig *config, const char *exp_id)
     29psString pxGenExpTag(pxConfig *config, const char *exp_name)
    3030{
    3131    PS_ASSERT_PTR_NON_NULL(config, NULL);
     
    9595        return NULL;
    9696    }
    97     psString exp_tag = NULL;
    98     psStringAppend(&exp_tag, "%s.%" PRIu64, exp_id, counter);
     97    psString exp_id = NULL;
     98    psStringAppend(&exp_id, "%s.%" PRIu64, exp_name, counter);
    9999    psFree(output);
    100100
    101     return exp_tag;
     101    return exp_id;
    102102}
Note: See TracChangeset for help on using the changeset viewer.