From 4740ad7af6f5ef463d7fd0e57b501745fba4c673 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Sat, 15 Jun 2019 13:50:03 -0700 Subject: [PATCH] Remove semicolons after function definitions Signed-off-by: Michael Forney --- src/quirks.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/quirks.c b/src/quirks.c index 50dab47..e2e8b4f 100644 --- a/src/quirks.c +++ b/src/quirks.c @@ -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. -- 2.7.4