From: Lennart Poettering Date: Fri, 29 Jun 2018 14:50:34 +0000 (+0200) Subject: growfs: make global variables that don't need to be exported static X-Git-Tag: v240~892^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=088c49c3da948ca1558d2a14280d10669fc9b8af;p=thirdparty%2Fsystemd.git growfs: make global variables that don't need to be exported static --- diff --git a/src/partition/growfs.c b/src/partition/growfs.c index d2053cd391d..6f1aa289335 100644 --- a/src/partition/growfs.c +++ b/src/partition/growfs.c @@ -24,8 +24,8 @@ #include "path-util.h" #include "strv.h" -const char *arg_target = NULL; -bool arg_dry_run = false; +static const char *arg_target = NULL; +static bool arg_dry_run = false; static int resize_ext4(const char *path, int mountfd, int devfd, uint64_t numblocks, uint64_t blocksize) { assert((uint64_t) (int) blocksize == blocksize);