From 7d0db895b524410ddac146f80d764be4c0ad2f46 Mon Sep 17 00:00:00 2001 From: Arshad Hussain Date: Sat, 3 Aug 2019 12:48:10 +0530 Subject: [PATCH] LU-4423 utils: Remove variables qualified by 'extern' under mount_utils.c Removal of corresponding 'extern' declaration is already done under commit b43c7cc6cba514687ebcbeaa1a7dcc8cf7ffa694. This patch is an extension to the above commit and covers file mount_utils.c Test-Parameters: trivial Signed-off-by: Arshad Hussain Change-Id: I2362be0f7ec32fba9d9e680a3d7c416e5ec40083 Reviewed-on: https://review.whamcloud.com/35688 Tested-by: jenkins Tested-by: Maloo Reviewed-by: Andreas Dilger Reviewed-by: James Simmons --- lustre/utils/mount_utils.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/lustre/utils/mount_utils.c b/lustre/utils/mount_utils.c index be5d46b..5f3c296 100644 --- a/lustre/utils/mount_utils.c +++ b/lustre/utils/mount_utils.c @@ -62,9 +62,6 @@ #include "mount_utils.h" -extern char *progname; -extern int verbose; - #define vprint(fmt, arg...) if (verbose > 0) printf(fmt, ##arg) #define verrprint(fmt, arg...) if (verbose >= 0) fprintf(stderr, fmt, ##arg) -- 1.8.3.1