Skip to content
Snippets Groups Projects
Commit 931f53e1 authored by Alex Bennée's avatar Alex Bennée Committed by Stefan Hajnoczi
Browse files

scripts/tracetool: don't barf on formats with precision


This only affects lttng user space tracing at the moment.

Signed-off-by: default avatarAlex Bennée <alex.bennee@linaro.org>
Signed-off-by: default avatarStefan Hajnoczi <stefanha@redhat.com>
parent 89ae5831
No related branches found
No related tags found
No related merge requests found
......@@ -228,7 +228,7 @@ def __repr__(self):
self.args,
fmt)
_FMT = re.compile("(%\w+|%.*PRI\S+)")
_FMT = re.compile("(%[\d\.]*\w+|%.*PRI\S+)")
def formats(self):
"""List of argument print formats."""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment