Fix build on many platforms

This commit is contained in:
2026-02-13 19:13:06 -05:00
parent 3fd2b13712
commit 20d8e141eb
4 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -5,6 +5,6 @@ package clip
// LaunchClearProcess launches the timed clipboard clearing process.
// 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 LaunchClearProcess(copySubject string) {
func LaunchClearProcess(copySubject []byte) {
go ClearProcess(copySubject)
}