oaooaoaoaoao

This commit is contained in:
Honkazel 2025-02-07 13:59:48 +05:00 committed by GitHub
parent d62f0c4554
commit efb8075b0c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,7 +14,7 @@ void Clipboard::copy(const char* fmt, ...) {
outputStr = strdup(buf);
if (fork() == 0)
execlp("wl-copy", "wl-copy", outputStr, nullptr);
execlp("wl-copy", "wl-copy", outputStr, NULL);
free(outputStr);
}