Fix: remove # in front on extern "C" {
[lttng-ust.git] / tools / lttng-gen-tp
index 03a85fcb4e6a7cb63e8172cce6f6bc8f03db1d27..d54559a0405444d5184d3dbe8bdfa154db5c597b 100755 (executable)
@@ -35,8 +35,8 @@ class HeaderFile:
 #define TRACEPOINT_INCLUDE_FILE ./{headerFilename}
 
 #ifdef __cplusplus
-#extern "C"{{
-#endif /*__cplusplus */
+extern "C"{{
+#endif /* __cplusplus */
 
 
 #if !defined({includeGuard}) || defined(TRACEPOINT_HEADER_MULTI_READ)
@@ -52,7 +52,7 @@ class HeaderFile:
 
 #ifdef __cplusplus
 }}
-#endif /*__cplusplus */
+#endif /* __cplusplus */
 
 """
     def __init__(self, filename, template):
This page took 0.023413 seconds and 4 git commands to generate.