Skip to content

Commit 6594ceb

Browse files
committed
vala: remove static from const arrays
1 parent 68d46cf commit 6594ceb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/gnome-ask-password-agent.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ public class MyStatusIcon : StatusIcon {
247247
}
248248
}
249249

250-
static const OptionEntry entries[] = {
250+
const OptionEntry entries[] = {
251251
{ null }
252252
};
253253

src/systemadm.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1151,7 +1151,7 @@ int dbus_error_to_errno(string error) {
11511151
}
11521152
}
11531153

1154-
static const OptionEntry entries[] = {
1154+
const OptionEntry entries[] = {
11551155
{ "user", 0, 0, OptionArg.NONE, out user, "Connect to user service manager", null },
11561156
{ "system", 0, OptionFlags.REVERSE, OptionArg.NONE, out user, "Connect to system manager", null },
11571157
{ null }

0 commit comments

Comments
 (0)