Changeset 081a0fa


Ignore:
Timestamp:
05/28/15 21:40:15 (9 years ago)
Author:
Hal Finkel <hfinkel@…>
Branches:
master
Children:
10599da
Parents:
3105f50
git-author:
Hal Finkel <hfinkel@…> (05/28/15 21:40:15)
git-committer:
Hal Finkel <hfinkel@…> (05/28/15 21:40:15)
Message:

don't print file:line if it is unknown (even if we have the function name)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • memlog2dot

    r0edbc98 r081a0fa  
    194194    chomp($func); 
    195195 
    196     $ret .= $func . '\n' . $loc . '\n'; 
     196    $ret .= $func . '\n'; 
     197 
     198    if ($loc !~ /^\?/) { 
     199      $ret .= $loc . '\n'; 
     200    } 
    197201  } elsif ($node->{'proc_name'} ne '?') { 
    198202    my $proc_name = $node->{'proc_name'}; 
Note: See TracChangeset for help on using the changeset viewer.