Fix build failures on several platforms

This commit is contained in:
2025-01-16 15:49:57 -05:00
parent 81b78068a7
commit c71cacb507
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -6,5 +6,5 @@ package core
// For interactive GUI/TUI implementations, the clipboard clearing process is launched as a goroutine.
// copySubject can be omitted to clear the clipboard immediately and unconditionally.
func LaunchClipClearProcess(copySubject string) {
go ClipClearProcess(copySubject)
go clipClearProcess(copySubject)
}