Changeset f4b1535 in mainline for kernel/generic/src/debug/symtab.c
- Timestamp:
- 2009-04-09T23:04:10Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6eb2e96
- Parents:
- 095003a8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/debug/symtab.c
r095003a8 rf4b1535 226 226 while ((hint = symtab_search_one(name, &pos))) { 227 227 if ((found == 0) || (str_length(output) > str_length(hint))) 228 str_ ncpy(output, hint, MAX_SYMBOL_NAME);228 str_cpy(output, MAX_SYMBOL_NAME, hint); 229 229 230 230 pos++; … … 242 242 243 243 if (found > 0) 244 str_ ncpy(input, output, size);244 str_cpy(input, size, output); 245 245 246 246 return found;
Note:
See TracChangeset
for help on using the changeset viewer.