Changeset 077bc931 in mainline


Ignore:
Timestamp:
2013-04-16T14:18:59Z (11 years ago)
Author:
Martin Sucha <sucha14@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e63c424f
Parents:
ed267bc
Message:

taskdump: Fix finding symbol name for address

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/taskdump/symtab.c

    red267bc r077bc931  
    267267                        continue;
    268268
    269                 if (best_name == NULL || (saddr <= addr && saddr > best_addr)) {
     269                if (saddr <= addr && (best_name == NULL || saddr > best_addr)) {
    270270                        best_name = sname;
    271271                        best_addr = saddr;
Note: See TracChangeset for help on using the changeset viewer.