]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
libblkid: remove unnecessary 'static' keyword
authorKarel Zak <kzak@redhat.com>
Mon, 20 Feb 2017 12:08:30 +0000 (13:08 +0100)
committerKarel Zak <kzak@redhat.com>
Mon, 20 Feb 2017 12:08:30 +0000 (13:08 +0100)
Signed-off-by: Karel Zak <kzak@redhat.com>
libblkid/src/topology/evms.c

index a4656d5b88b222a3a0c150c31045a21fb7e6ce7b..1aa32f966023028ce35e8ed7655d86272a7a9e1d 100644 (file)
 #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)
 {