summaryrefslogtreecommitdiff
path: root/src/detect-virt
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2015-09-23 19:40:13 +0200
committerLennart Poettering <lennart@poettering.net>2015-09-29 21:55:51 +0200
commit9e6a555ae45b97275ca5f08f3b6635ef981e03a5 (patch)
tree6bdf59d107e942b4ad2be3600ba0c93a773e503c /src/detect-virt
parent939c173f60c4cc1e2ce8cbf014910b13c53358bb (diff)
downloadsystemd-9e6a555ae45b97275ca5f08f3b6635ef981e03a5.tar.gz
detect-virt: various modernizations
Diffstat (limited to 'src/detect-virt')
-rw-r--r--src/detect-virt/detect-virt.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/detect-virt/detect-virt.c b/src/detect-virt/detect-virt.c
index f713712405..dcf4e9749e 100644
--- a/src/detect-virt/detect-virt.c
+++ b/src/detect-virt/detect-virt.c
@@ -96,8 +96,7 @@ static int parse_argv(int argc, char *argv[]) {
}
if (optind < argc) {
- log_error("%s takes no arguments.",
- program_invocation_short_name);
+ log_error("%s takes no arguments.", program_invocation_short_name);
return -EINVAL;
}
@@ -105,7 +104,7 @@ static int parse_argv(int argc, char *argv[]) {
}
int main(int argc, char *argv[]) {
- int retval = EXIT_SUCCESS, r;
+ int r;
/* This is mostly intended to be used for scripts which want
* to detect whether we are being run in a virtualized
@@ -123,7 +122,7 @@ int main(int argc, char *argv[]) {
case ONLY_VM:
r = detect_vm();
if (r < 0) {
- log_error_errno(r, "Failed to check for vm: %m");
+ log_error_errno(r, "Failed to check for VM: %m");
return EXIT_FAILURE;
}
@@ -152,7 +151,5 @@ int main(int argc, char *argv[]) {
if (!arg_quiet)
puts(virtualization_to_string(r));
- retval = r != VIRTUALIZATION_NONE ? EXIT_SUCCESS : EXIT_FAILURE;
-
- return retval;
+ return r != VIRTUALIZATION_NONE ? EXIT_SUCCESS : EXIT_FAILURE;
}