diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-03-14 21:49:10 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-03-14 23:03:21 -0400 |
commit | d3f86679783aee216d60b125acfb5f39a0df555f (patch) | |
tree | 069b69fa3119d7416e4cf1490e354dede8f552e1 | |
parent | a8ffe6fbcbfdba39aef8dce8b298b3e0cb377c0e (diff) |
core: do not use quotes around virt and arch
Quotes are useful when the string can contain spaces or be otherwise
confusing. Not possible with those two.
-rw-r--r-- | src/core/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/main.c b/src/core/main.c index d68e73769a..3ec70f9815 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -1532,11 +1532,11 @@ int main(int argc, char *argv[]) { detect_virtualization(&virtualization); if (virtualization) - log_info("Detected virtualization '%s'.", virtualization); + log_info("Detected virtualization %s.", virtualization); write_container_id(); - log_info("Detected architecture '%s'.", architecture_to_string(uname_architecture())); + log_info("Detected architecture %s.", architecture_to_string(uname_architecture())); if (in_initrd()) log_info("Running in initial RAM disk."); |