tests: Make test_per_application_leaks more robust
[lttng-tools.git] / tests / utils / testapp / userspace-probe-elf-binary / userspace-probe-elf-binary.c
index e6e041da998519ecadd7afc7ee4e4d9a31878caa..7a5040051e7314e137b7e22d30ce56f853af0574 100644 (file)
@@ -8,13 +8,13 @@
 #include "foo.h"
 volatile int not_a_function = 0;
 
-void __attribute__ ((noinline)) test_function(void);
-void __attribute__ ((noinline)) test_function(void)
+void __attribute__((noinline)) test_function(void);
+void __attribute__((noinline)) test_function(void)
 {
        not_a_function += 1;
 }
 
-int main(int argc, char *argv[])
+int main(void)
 {
        test_function();
        dynamic_symbol(42);
This page took 0.02463 seconds and 4 git commands to generate.