]> git.lyx.org Git - lyx.git/blobdiff - src/support/kill.cpp
Possibly fix this bug:
[lyx.git] / src / support / kill.cpp
index af346799fd41e4f237d4db9ff126c47319b9df08..f3ee53dd2c5f25d259af689e669082a8b4089ad6 100644 (file)
@@ -30,7 +30,7 @@ namespace lyx {
 int support::kill(int pid, int sig)
 {
 #ifdef _WIN32
-       if (pid == (int)GetCurrentProcessId()) 
+       if (pid == (int)GetCurrentProcessId())
                return -raise(sig);
        HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, TRUE, pid);
        if (!hProcess) {