Remove semicolons after function definitions

Signed-off-by: Michael Forney <mforney@mforney.org>
This commit is contained in:
Michael Forney 2019-06-15 13:50:03 -07:00
parent f84bfe37fb
commit 4740ad7af6

View 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.