Clean-up: run format-cpp on the tree
[lttng-tools.git] / tests / utils / testapp / gen-ust-nevents-str / tp.h
index b9fe384297ad9ee45450fa9c0b0b1cc4881e62f5..3a4054a84cfd5a45cfeee7feeee8fa21dc6022b6 100644 (file)
 
 #include <lttng/tracepoint.h>
 
-TRACEPOINT_EVENT(tp, the_string,
-       TP_ARGS(
-               int, i,
-               int, arg_i,
-               const char *, str
-       ),
-       TP_FIELDS(
-               ctf_integer(int, i, i)
-               ctf_integer(long, arg_i, arg_i)
-               ctf_string(str, str)
-       )
-)
+TRACEPOINT_EVENT(tp,
+                the_string,
+                TP_ARGS(int, i, int, arg_i, const char *, str),
+                TP_FIELDS(ctf_integer(int, i, i) ctf_integer(long, arg_i, arg_i)
+                                  ctf_string(str, str)))
 
 #endif /* _TRACEPOINT_TP_H */
 
This page took 0.023149 seconds and 4 git commands to generate.