diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-09-17 18:23:10 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-09-17 19:05:32 +0200 |
commit | 669bec5d170c7b6cec5194179d2c14244c06817c (patch) | |
tree | d1c62ef6c0b75f46b72b2346064d4e644338e6cd /src/shared/util.h | |
parent | 84b98e6f5e059515fcfe2677e798f01463cbdd2f (diff) |
util: various cleanups for printing boot status
Diffstat (limited to 'src/shared/util.h')
-rw-r--r-- | src/shared/util.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/shared/util.h b/src/shared/util.h index 1a607cf37c..71b5c52c41 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -370,9 +370,9 @@ int pipe_eof(int fd); cpu_set_t* cpu_set_malloc(unsigned *ncpus); -void status_vprintf(const char *status, bool ellipse, const char *format, va_list ap); -void status_printf(const char *status, bool ellipse, const char *format, ...); -void status_welcome(void); +int status_vprintf(const char *status, bool ellipse, const char *format, va_list ap); +int status_printf(const char *status, bool ellipse, const char *format, ...); +int status_welcome(void); int fd_columns(int fd); unsigned columns(void); |