mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-02-27 12:50:34 +01:00
Remove semicolons after function definitions
Signed-off-by: Michael Forney <mforney@mforney.org>
This commit is contained in:
parent
f84bfe37fb
commit
4740ad7af6
1 changed files with 3 additions and 3 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue