Changeset 14023 for trunk/ippTools/src/pxtag.c
- Timestamp:
- Jul 5, 2007, 3:16:08 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/ippTools/src/pxtag.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/pxtag.c
r10709 r14023 27 27 #include "pxtag.h" 28 28 29 psString pxGenExpTag(pxConfig *config, const char *exp_ id)29 psString pxGenExpTag(pxConfig *config, const char *exp_name) 30 30 { 31 31 PS_ASSERT_PTR_NON_NULL(config, NULL); … … 95 95 return NULL; 96 96 } 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); 99 99 psFree(output); 100 100 101 return exp_ tag;101 return exp_id; 102 102 }
Note:
See TracChangeset
for help on using the changeset viewer.
