From 9d065249686ce80eed6554821384956678a0f717 Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Mon, 3 Nov 2014 20:43:34 +0000 Subject: [PATCH] Call dload_finalize_file, not dld_finalize_file. Oops. --- src/microcode/pruxdld.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/microcode/pruxdld.c b/src/microcode/pruxdld.c index 377755e61..ca92f1522 100644 --- a/src/microcode/pruxdld.c +++ b/src/microcode/pruxdld.c @@ -149,7 +149,7 @@ dld_load (const char * path) static void dld_finalize (void * handle) { - void * address = (dlsym (handle, "dld_finalize_file")); + void * address = (dlsym (handle, "dload_finalize_file")); if (address != 0) { void (*finalize) (void) = address; -- 2.25.1