1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-07 21:50:35 +02:00

syscalls: set-thread-name, thread-name: Fix thinko.

* guix/build/syscalls.scm (set-thread-name, thread-name): Oops, fix thinko.
This commit is contained in:
Jan (janneke) Nieuwenhuizen
2020-06-08 16:49:03 +02:00
committed by Jan Nieuwenhuizen
parent 835b3d893f
commit ab9e30039d

View File

@@ -1248,12 +1248,12 @@ bytes."
(define set-thread-name
(if (string-contains %host-type "linux")
set-thread-name!/linux
(cute const #f)))
(const #f)))
(define thread-name
(if (string-contains %host-type "linux")
thread-name/linux
(cute const "")))
(const "")))
;;;