about summary refs log tree commit diff stats
path: root/src/libtools/threads.c
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-09-12 14:01:53 +0200
committerptitSeb <sebastien.chev@gmail.com>2024-09-12 14:01:53 +0200
commit1a637cb1d8cbc952df67411369ed28bb0a4b99cf (patch)
treeab80202f580decf6664e3f89ba6c04a52bc1d0a5 /src/libtools/threads.c
parent0d952641ede643d94a79dacbddadc518546a210f (diff)
downloadbox64-1a637cb1d8cbc952df67411369ed28bb0a4b99cf.tar.gz
box64-1a637cb1d8cbc952df67411369ed28bb0a4b99cf.zip
Fixed a typo
Diffstat (limited to 'src/libtools/threads.c')
-rw-r--r--src/libtools/threads.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libtools/threads.c b/src/libtools/threads.c
index 47eae9d4..f0632154 100644
--- a/src/libtools/threads.c
+++ b/src/libtools/threads.c
@@ -799,7 +799,7 @@ EXPORT int my_pthread_setaffinity_np(x64emu_t* emu, pthread_t thread, size_t cpu
 
     return ret;
 }
-EXPORT int my_my_pthread_setaffinity_np_old(x64emu_t* emu, pthread_t thread, void* cpuset)
+EXPORT int my_pthread_setaffinity_np_old(x64emu_t* emu, pthread_t thread, void* cpuset)
 {
 	return my_pthread_setaffinity_np(emu, thread, 128, cpuset);
 }