Alexandre Julliard : taskkill: Make some variables static.
Module: wine Branch: master Commit: 95e095ba314576b57e34a5571c4e7f2ef3b17181 URL: http://source.winehq.org/git/wine.git/?a=commit;h=95e095ba314576b57e34a5571c... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Fri Oct 1 13:38:41 2010 +0200 taskkill: Make some variables static. --- programs/taskkill/taskkill.c | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/programs/taskkill/taskkill.c b/programs/taskkill/taskkill.c index 5508bfe..8dffdcd 100644 --- a/programs/taskkill/taskkill.c +++ b/programs/taskkill/taskkill.c @@ -25,11 +25,10 @@ #include "taskkill.h" +static int force_termination; -int force_termination; - -WCHAR **task_list; -unsigned int task_count; +static WCHAR **task_list; +static unsigned int task_count; struct pid_close_info {
participants (1)
-
Alexandre Julliard