commit | 5612d10bf8c35a9fa16f85cbb980efb5d9b1e12d | [log] [tgz] |
---|---|---|
author | Steven Rostedt (Red Hat) <rostedt@goodmis.org> | Mon Nov 16 15:22:45 2015 -0500 |
committer | Steven Rostedt <rostedt@goodmis.org> | Mon Nov 16 15:22:45 2015 -0500 |
tree | 51174765e12bf82cd682ed570d2384158da04077 | |
parent | 300df7084f8f25c5033b0d92baf578fd4f51f668 [diff] |
parse-events: Fix output of %llu for 64 bit values read on 32 bit machines When a long value is read on 32 bit machines for 64 bit output, the parsing needs to change "%lu" into "%llu", as the value is read natively. Unfortunately, if "%llu" is already there, the code will add another "l" to it and fail to parse it properly. Signed-off-by: Steven Rostedt <rostedt@goodmis.org>