ruby-changes:52845
From: svn <ko1@a...>
Date: Sat, 13 Oct 2018 14:36:55 +0900 (JST)
Subject: [ruby-changes:52845] svn:r65057 (trunk): * expand tabs.
svn 2018-10-13 14:36:51 +0900 (Sat, 13 Oct 2018) New Revision: 65057 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=65057 Log: * expand tabs. Modified files: trunk/addr2line.c Index: addr2line.c =================================================================== --- addr2line.c (revision 65056) +++ addr2line.c (revision 65057) @@ -825,16 +825,16 @@ next_line: https://github.com/ruby/ruby/blob/trunk/addr2line.c#L825 } else if (!line->filename) { kprintf("%s(%s+0x%"PRIuPTR") [0x%"PRIuPTR"] ???:%d\n", - line->path, line->sname, d, addr, line->line); + line->path, line->sname, d, addr, line->line); } else if (line->dirname && line->dirname[0]) { kprintf("%s(%s+0x%"PRIuPTR") [0x%"PRIuPTR"] %s/%s:%d\n", - line->path, line->sname, + line->path, line->sname, d, addr, line->dirname, line->filename, line->line); } else { kprintf("%s(%s+0x%"PRIuPTR") [0x%"PRIuPTR"] %s:%d\n", - line->path, line->sname, + line->path, line->sname, d, addr, line->filename, line->line); } /* FreeBSD's backtrace may show _start and so on */ -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/