From: Mathieu Desnoyers Date: Fri, 14 Feb 2014 15:13:32 +0000 (-0500) Subject: Cleanup: remove extra space in dlerror wrapper X-Git-Tag: v2.4.0-rc4~1 X-Git-Url: https://git.lttng.org/?p=lttng-ust.git;a=commitdiff_plain;h=39ec15824b767ec920d6520d53d9a67338119a75 Cleanup: remove extra space in dlerror wrapper Signed-off-by: Mathieu Desnoyers --- diff --git a/include/lttng/ust-dlfcn.h b/include/lttng/ust-dlfcn.h index 786d3b5a..c92f1bb6 100644 --- a/include/lttng/ust-dlfcn.h +++ b/include/lttng/ust-dlfcn.h @@ -56,6 +56,6 @@ extern void *dlopen(__const char *__file, int __mode); extern int dlclose(void *__handle) __nonnull ((1)); extern void *dlsym(void *__restrict __handle, __const char *__restrict __name) __nonnull ((2)); -extern char *dlerror (void); +extern char *dlerror(void); #endif /* _LTTNG_UST_DLFCN_H */