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:
		
							parent
							
								
									835b3d893f
								
							
						
					
					
						commit
						ab9e30039d
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -1248,12 +1248,12 @@ bytes."
 | 
				
			||||||
(define set-thread-name
 | 
					(define set-thread-name
 | 
				
			||||||
  (if (string-contains %host-type "linux")
 | 
					  (if (string-contains %host-type "linux")
 | 
				
			||||||
      set-thread-name!/linux
 | 
					      set-thread-name!/linux
 | 
				
			||||||
      (cute const #f)))
 | 
					      (const #f)))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(define thread-name
 | 
					(define thread-name
 | 
				
			||||||
  (if (string-contains %host-type "linux")
 | 
					  (if (string-contains %host-type "linux")
 | 
				
			||||||
      thread-name/linux
 | 
					      thread-name/linux
 | 
				
			||||||
      (cute const "")))
 | 
					      (const "")))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
;;;
 | 
					;;;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue