From: Michael Jeanson Date: Thu, 7 Feb 2019 20:24:31 +0000 (-0500) Subject: Cleanup: fix typo 'acces' -> 'access' X-Git-Tag: v2.12.0-rc1~58 X-Git-Url: http://git.liburcu.org/?p=lttng-ust.git;a=commitdiff_plain;h=09026ccf412bb6ec3367d0e614efffca564f1578 Cleanup: fix typo 'acces' -> 'access' Signed-off-by: Michael Jeanson Signed-off-by: Mathieu Desnoyers --- diff --git a/liblttng-ust-dl/lttng-ust-dl.c b/liblttng-ust-dl/lttng-ust-dl.c index ce2ae0e7..231e9ec3 100644 --- a/liblttng-ust-dl/lttng-ust-dl.c +++ b/liblttng-ust-dl/lttng-ust-dl.c @@ -107,7 +107,7 @@ void lttng_ust_dl_dlopen(void *so_base, const char *so_name, elf = lttng_ust_elf_create(resolved_path); if (!elf) { - ERR("could not acces file %s", resolved_path); + ERR("could not access file %s", resolved_path); return; } @@ -169,7 +169,7 @@ void lttng_ust_dl_dlmopen(void *so_base, Lmid_t nsid, const char *so_name, elf = lttng_ust_elf_create(resolved_path); if (!elf) { - ERR("could not acces file %s", resolved_path); + ERR("could not access file %s", resolved_path); return; }