From 83ba791afe383875c4b3bdbf4b59497af4ff0b9e Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Tue, 20 Oct 2009 14:04:24 +0000 Subject: [PATCH] Code cleanup --- src/kill.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/kill.c b/src/kill.c index 89f20d3..7423285 100644 --- a/src/kill.c +++ b/src/kill.c @@ -1,5 +1,5 @@ /* $Id$ */ -/* Copyright (c) 2007 Pierre Pronchery */ +/* Copyright (c) 2009 Pierre Pronchery */ /* This file is part of DeforaOS Unix utils */ /* utils is not free software; you can redistribute it and/or modify it under * the terms of the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 @@ -89,5 +89,5 @@ int main(int argc, char * argv[]) } if(optind == argc) return _usage(); - return _kill(sig, argc - optind, &argv[optind]) == 0 ? 0 : 2; + return (_kill(sig, argc - optind, &argv[optind]) == 0) ? 0 : 2; }