X Tutup
Skip to content

Commit 1addc46

Browse files
committed
pid1: make manager_flip_auto_status() static
No functional change.
1 parent ffe5c01 commit 1addc46

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/core/manager.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ static void draw_cylon(char buffer[], size_t buflen, unsigned width, unsigned po
181181
}
182182
}
183183

184-
void manager_flip_auto_status(Manager *m, bool enable, const char *reason) {
184+
static void manager_flip_auto_status(Manager *m, bool enable, const char *reason) {
185185
assert(m);
186186

187187
if (enable) {

src/core/manager.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,6 @@ void manager_set_show_status(Manager *m, ShowStatus mode, const char *reason);
516516
void manager_set_first_boot(Manager *m, bool b);
517517

518518
void manager_status_printf(Manager *m, StatusType type, const char *status, const char *format, ...) _printf_(4,5);
519-
void manager_flip_auto_status(Manager *m, bool enable, const char *reason);
520519

521520
Set *manager_get_units_requiring_mounts_for(Manager *m, const char *path);
522521

0 commit comments

Comments
 (0)
X Tutup