# | Line 42 | Line 42 | namespace fwlite { | |
---|---|---|
42 | for (int i = 0; i < exprArray->GetEntries(); ++i) { | |
43 | const char *ex = ((TObjString *)(*exprArray)[i])->GetString(); | |
44 | scanner.addExpression(ex); | |
45 | < | printf(" : %8.8s", ex); |
45 | > | printf(" : %8s", (strlen(ex)>8 ? ex+strlen(ex)-8 : ex)); // the rightmost part is usually the more interesting one |
46 | rowline += 3+8; | |
47 | } | |
48 | std::cout << " :" << std::endl; |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |