Skip to content

Commit 8a97c1a

Browse files
committed
Fix typo.
1 parent 414fb54 commit 8a97c1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/loaders/dyn_load.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ void *ga_load_library(const char *name, error *e) {
1919
void *ga_func_ptr(void *h, const char *name, error *e) {
2020
void *res = dlsym(h, name);
2121
if (res == NULL)
22-
error_fmt(e, GA_LOAD_ERROR, "Could not find synbol \"%s\": %s", name, dlerror());
22+
error_fmt(e, GA_LOAD_ERROR, "Could not find symbol \"%s\": %s", name, dlerror());
2323
return res;
2424
}
2525

0 commit comments

Comments
 (0)