Changeset 1999 in kBuild for trunk/src/kmk/kbuild.c
- Timestamp:
- Oct 29, 2008 9:47:00 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/kbuild.c
r1998 r1999 654 654 assert(!pVar->rdonly_val); 655 655 #endif 656 kbuild_apply_defpath(pDefPath, &pVar->value, (unsigned int *)&pVar->value_length, &pVar->value_alloc_len, 1);656 kbuild_apply_defpath(pDefPath, &pVar->value, &pVar->value_length, &pVar->value_alloc_len, 1); 657 657 } 658 658 return pVar; … … 678 678 assert(!pVar->rdonly_val); 679 679 #endif 680 kbuild_apply_defpath(pDefPath, &pVar->value, (unsigned int *)&pVar->value_length, &pVar->value_alloc_len, 1);680 kbuild_apply_defpath(pDefPath, &pVar->value, &pVar->value_length, &pVar->value_alloc_len, 1); 681 681 } 682 682 return pVar; … … 2068 2068 assert(!pSource->rdonly_val); 2069 2069 #endif 2070 kbuild_apply_defpath(pDefPath, &pSource->value, (unsigned int *)&pSource->value_length, &pSource->value_alloc_len, 1 /* can free */);2070 kbuild_apply_defpath(pDefPath, &pSource->value, &pSource->value_length, &pSource->value_alloc_len, 1 /* can free */); 2071 2071 } 2072 2072
Note:
See TracChangeset
for help on using the changeset viewer.