libblkid: remove unnecessary 'static' keyword

Signed-off-by: Karel Zak <kzak@redhat.com>
pull/416/head
Karel Zak 2017-02-20 13:08:30 +01:00
parent 79b915e8df
commit bf3e7a40ab
1 changed files with 2 additions and 2 deletions

View File

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