From bf3e7a40ab931bd0ef9d2227ea96e2c7fad64454 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Mon, 20 Feb 2017 13:08:30 +0100 Subject: [PATCH] libblkid: remove unnecessary 'static' keyword Signed-off-by: Karel Zak --- libblkid/src/topology/evms.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libblkid/src/topology/evms.c b/libblkid/src/topology/evms.c index a4656d5b88..1aa32f9660 100644 --- a/libblkid/src/topology/evms.c +++ b/libblkid/src/topology/evms.c @@ -30,10 +30,10 @@ #define _IOT_evms_stripe_info _IOT (_IOTS(uint32_t), 2, 0, 0, 0, 0) #define EVMS_GET_STRIPE_INFO _IOR(EVMS_MAJOR, 0xF0, struct evms_stripe_info) -static struct evms_stripe_info { +struct evms_stripe_info { uint32_t size; /* stripe unit 512-byte blocks */ uint32_t width; /* the number of stripe members or RAID data disks */ -} evms_stripe_info; +}; static int is_evms_device(dev_t devno) { -- 2.47.3