Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
libinput
libinput
Commits
4740ad7a
Commit
4740ad7a
authored
Jun 15, 2019
by
Michael Forney
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove semicolons after function definitions
Signed-off-by:
Michael Forney
<
mforney@mforney.org
>
parent
f84bfe37
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/quirks.c
src/quirks.c
+3
-3
No files found.
src/quirks.c
View file @
4740ad7a
...
...
@@ -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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment