Remove semicolons after function definitions
authorMichael Forney <mforney@mforney.org>
Sat, 15 Jun 2019 20:50:03 +0000 (13:50 -0700)
committerMichael Forney <mforney@mforney.org>
Sat, 15 Jun 2019 22:13:41 +0000 (15:13 -0700)
Signed-off-by: Michael Forney <mforney@mforney.org>
src/quirks.c

index 50dab47..e2e8b4f 100644 (file)
@@ -292,7 +292,7 @@ matchflagname(enum match_flags f)
        default:
                abort();
        }
-};
+}
 
 static inline struct property *
 property_new(void)
@@ -312,7 +312,7 @@ property_ref(struct property *p)
        assert(p->refcount > 0);
        p->refcount++;
        return p;
-};
+}
 
 static inline struct property *
 property_unref(struct property *p)
@@ -323,7 +323,7 @@ property_unref(struct property *p)
        p->refcount--;
 
        return NULL;
-};
+}
 
 /* Separate call so we can verify that the caller unrefs the property
  * before shutting down the subsystem.