diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-07-07 03:49:39 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-07-07 04:13:20 +0200 |
commit | 2e54424d83c633b6362528c8f97beba89e0ce28b (patch) | |
tree | 690c6e7fa19a5bb76ac184f045c4ec8f12f96879 /src | |
parent | e0376b177ca00bc5c3d8a271f6422ef3c869861b (diff) |
util: minor simplification when printing welcome text
Diffstat (limited to 'src')
-rw-r--r-- | src/util.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/util.c b/src/util.c index 774f061efc..a5f904dbfd 100644 --- a/src/util.c +++ b/src/util.c @@ -2675,11 +2675,11 @@ void status_welcome(void) { * script did. */ if (startswith(r, "Red Hat")) - status_printf("\tWelcome to \x1B[0;31m%s\x1B[0m!\n", r); /* Red for RHEL */ + status_printf("Welcome to \x1B[0;31m%s\x1B[0m!\n", r); /* Red for RHEL */ else if (startswith(r, "Fedora")) - status_printf("\tWelcome to \x1B[0;34m%s\x1B[0m!\n", r); /* Blue for Fedora */ + status_printf("Welcome to \x1B[0;34m%s\x1B[0m!\n", r); /* Blue for Fedora */ else - status_printf("\tWelcome to %s!\n", r); + status_printf("Welcome to %s!\n", r); free(r); @@ -2691,7 +2691,7 @@ void status_welcome(void) { truncate_nl(r); - status_printf("\tWelcome to \x1B[0;32m%s\x1B[0m!\n", r); /* Green for SUSE */ + status_printf("Welcome to \x1B[0;32m%s\x1B[0m!\n", r); /* Green for SUSE */ free(r); #else #warning "You probably should add a welcome text logic here." |