Skip to content

Commit ce3d90a

Browse files
committed
Merge tag 'trace-tools-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace
Pull tracing tool update from Steven Rostedt: - Make dot2c generate monitor's automata definition static * tag 'trace-tools-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace: rv/dot2c: Make automaton definition static
2 parents 4f1e0c1 + 21a1994 commit ce3d90a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/verification/dot2/dot2c.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def format_automaton_definition(self):
111111

112112
def format_aut_init_header(self):
113113
buff = []
114-
buff.append("struct %s %s = {" % (self.struct_automaton_def, self.var_automaton_def))
114+
buff.append("static struct %s %s = {" % (self.struct_automaton_def, self.var_automaton_def))
115115
return buff
116116

117117
def __get_string_vector_per_line_content(self, buff):

0 commit comments

Comments
 (0)