From d1e19e972abb3fb21260d6c1513ba5155a97327f Mon Sep 17 00:00:00 2001 From: sin Date: Thu, 23 Apr 2015 15:29:37 +0100 Subject: [PATCH] tar: No need to zero-fill variables with global storage --- tar.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tar.c b/tar.c index cb3d17d..6e70425 100644 --- a/tar.c +++ b/tar.c @@ -52,8 +52,8 @@ static int tarfd; static ino_t tarinode; static dev_t tardev; -static int mflag; -static char filtermode = '\0'; +static int mflag; +static int filtermode; static struct ent { char *name;