projects
/
platform
/
upstream
/
libinput.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f84bfe3
)
Remove semicolons after function definitions
author
Michael Forney
<mforney@mforney.org>
Sat, 15 Jun 2019 20:50:03 +0000
(13:50 -0700)
committer
Michael 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
patch
|
blob
|
history
diff --git
a/src/quirks.c
b/src/quirks.c
index 50dab47d9701d465ac50ed91f0ea33b64f155fa6..e2e8b4f45c9ce480ab7f056ce535ea58302addf8 100644
(file)
--- 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.