X Tutup
Skip to content

Commit 6b42227

Browse files
committed
systemctl: put static destructor in the order of variables
1 parent 341d883 commit 6b42227

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/systemctl/systemctl.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,11 @@ bool arg_read_only = false;
112112
bool arg_mkdir = false;
113113
bool arg_marked = false;
114114

115-
STATIC_DESTRUCTOR_REGISTER(arg_wall, strv_freep);
116-
STATIC_DESTRUCTOR_REGISTER(arg_root, freep);
117115
STATIC_DESTRUCTOR_REGISTER(arg_types, strv_freep);
118116
STATIC_DESTRUCTOR_REGISTER(arg_states, strv_freep);
119117
STATIC_DESTRUCTOR_REGISTER(arg_properties, strv_freep);
118+
STATIC_DESTRUCTOR_REGISTER(arg_wall, strv_freep);
119+
STATIC_DESTRUCTOR_REGISTER(arg_root, freep);
120120
STATIC_DESTRUCTOR_REGISTER(arg_clean_what, strv_freep);
121121

122122
static int systemctl_help(void) {

0 commit comments

Comments
 (0)
X Tutup