summaryrefslogtreecommitdiffstats
path: root/ksysguard
diff options
context:
space:
mode:
authorFrançois Andriot <francois.andriot@free.fr>2014-10-11 17:55:52 +0200
committerSlávek Banko <slavek.banko@axis.cz>2014-10-11 17:55:52 +0200
commit373dcb07bddde02e357601683d8a21066467d802 (patch)
tree15d71e88784d7f7bfa92eab628c5805ca7591a65 /ksysguard
parentd8d566bb0f1e1e740c7a76e6f6d0c51a2f65acde (diff)
downloadtdebase-373dcb07bddde02e357601683d8a21066467d802.tar.gz
tdebase-373dcb07bddde02e357601683d8a21066467d802.zip
Fix FTBFS due to missing return values
Diffstat (limited to 'ksysguard')
-rw-r--r--ksysguard/gui/kpm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ksysguard/gui/kpm.c b/ksysguard/gui/kpm.c
index 5ce25516a..9f41b3065 100644
--- a/ksysguard/gui/kpm.c
+++ b/ksysguard/gui/kpm.c
@@ -4,5 +4,5 @@
int main()
{
- return execlp( "ksysguard", "ksysguard", "--showprocesses", 0 );
+ return execlp( "ksysguard", "ksysguard", "--showprocesses", NULL );
}