mirror of
https://github.com/systemd/systemd.git
synced 2025-03-24 14:50:17 +03:00
udev-rules: replace 'type *func()' -> 'type* func()'
This commit is contained in:
parent
22ca9406c4
commit
a75aeca78c
@ -346,7 +346,7 @@ static void log_event_truncated(
|
||||
|
||||
/*** Other functions ***/
|
||||
|
||||
static UdevRuleToken *udev_rule_token_free(UdevRuleToken *token) {
|
||||
static UdevRuleToken* udev_rule_token_free(UdevRuleToken *token) {
|
||||
if (!token)
|
||||
return NULL;
|
||||
|
||||
@ -365,7 +365,7 @@ static void udev_rule_line_clear_tokens(UdevRuleLine *rule_line) {
|
||||
udev_rule_token_free(i);
|
||||
}
|
||||
|
||||
static UdevRuleLine *udev_rule_line_free(UdevRuleLine *rule_line) {
|
||||
static UdevRuleLine* udev_rule_line_free(UdevRuleLine *rule_line) {
|
||||
if (!rule_line)
|
||||
return NULL;
|
||||
|
||||
@ -380,7 +380,7 @@ static UdevRuleLine *udev_rule_line_free(UdevRuleLine *rule_line) {
|
||||
|
||||
DEFINE_TRIVIAL_CLEANUP_FUNC(UdevRuleLine*, udev_rule_line_free);
|
||||
|
||||
static UdevRuleFile *udev_rule_file_free(UdevRuleFile *rule_file) {
|
||||
static UdevRuleFile* udev_rule_file_free(UdevRuleFile *rule_file) {
|
||||
if (!rule_file)
|
||||
return NULL;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user