growfs: make global variables that don't need to be exported static

This commit is contained in:
Lennart Poettering 2018-06-29 16:50:34 +02:00
parent 6b228852bc
commit 088c49c3da
1 changed files with 2 additions and 2 deletions

View File

@ -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);