summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sysinfo/processinfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/settings/sysinfo/processinfo.cpp b/noncore/settings/sysinfo/processinfo.cpp
index 8e992d5..f9263ea 100644
--- a/noncore/settings/sysinfo/processinfo.cpp
+++ b/noncore/settings/sysinfo/processinfo.cpp
@@ -125,13 +125,13 @@ void ProcessInfo::viewProcess(QListViewItem *process)
125 (tr("You really want to kill\n"+command+" PID: "+pid+"?")), 125 (tr("You really want to kill\n"+command+" PID: "+pid+"?")),
126 (tr("Yes")), (tr("No")), 0 )){ 126 (tr("Yes")), (tr("No")), 0 )){
127 case 0: // Yes clicked, 127 case 0: // Yes clicked,
128 { 128 {
129 bool ok; 129 bool ok;
130 pid_t child=pid.toInt(&ok,10); 130 pid_t child=pid.toInt(&ok,10);
131 if((kill(child,SIGTERM)) < 0) 131 if((kill(child,SIGKILL)) < 0)
132 perror("kill:SIGTERM"); 132 perror("kill:SIGTERM");
133 } 133 }
134 break; 134 break;
135 case 1: // Cancel 135 case 1: // Cancel
136 break; 136 break;
137 }; 137 };