about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-12-03 17:41:54 +0100
committerptitSeb <sebastien.chev@gmail.com>2024-12-03 17:41:54 +0100
commit1c1a26626ba1ceda224757ccaf8483534885cbe3 (patch)
treea0a62791cbf4629c46a66376483a2ceb4ee07a5d /src
parent93f29d8cd913495a279597c0dc5c8a15e6232e8e (diff)
downloadbox64-1c1a26626ba1ceda224757ccaf8483534885cbe3.tar.gz
box64-1c1a26626ba1ceda224757ccaf8483534885cbe3.zip
[ELFLOADER] Fixed a typo in a hack
Diffstat (limited to 'src')
-rw-r--r--src/elfs/elfloader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/elfs/elfloader.c b/src/elfs/elfloader.c
index 1bd0ba16..d8e1022b 100644
--- a/src/elfs/elfloader.c
+++ b/src/elfs/elfloader.c
@@ -1091,7 +1091,7 @@ int LoadNeededLibs(elfheader_t* h, lib_t *maplib, int local, int bindnow, int de
             h->needed->names[j++] = h->DynStrTab+h->delta+(box64_is32bits?h->Dynamic._32[i].d_un.d_val:h->Dynamic._64[i].d_un.d_val);
     #ifndef ANDROID
     if(box64_is32bits && strstr(h->name, "lsteamclient.dll.so"))
-        h->needed->names[j++] = "libgcc_s.so";
+        h->needed->names[j++] = "libgcc_s.so.1";
     #endif
     if(h==my_context->elfs[0] && box64_addlibs.size) {
         for(int i=0; i<box64_addlibs.size; ++i) {