X-Git-Url: https://git.liburcu.org/?p=ust.git;a=blobdiff_plain;f=tests%2Fdlopen%2Fdlopen.c;h=d367580c3698cf86641cb2e7399def4d542837f6;hp=28d0ee6f01a9a9da8fc9cc443f45724c5946a474;hb=37ee34e4d9b9363c758aa43255d71661900e89b0;hpb=30ffe2794fc413035208cdd2a7a061bc208e210f diff --git a/tests/dlopen/dlopen.c b/tests/dlopen/dlopen.c index 28d0ee6..d367580 100644 --- a/tests/dlopen/dlopen.c +++ b/tests/dlopen/dlopen.c @@ -28,7 +28,7 @@ int main() { int (*fptr)(); - trace_mark(ust, from_main_before_lib, "%s", "Event occured in the main program before" + trace_mark(from_main_before_lib, "%s", "Event occured in the main program before" " the opening of the library\n"); void *lib_handle = dlopen("libdummy.so", RTLD_LAZY); @@ -47,7 +47,7 @@ int main() (*fptr)(); dlclose(lib_handle); - trace_mark(ust, from_main_after_lib,"%s", "Event occured in the main program after " + trace_mark(from_main_after_lib,"%s", "Event occured in the main program after " "the library has been closed\n"); return 0;