diff options
author | David Tardon <dtardon@redhat.com> | 2023-05-05 14:17:21 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2023-05-05 14:18:17 +0200 |
commit | b45e3167089f709c08e4d5112030692c0238df8d (patch) | |
tree | 1cc3e18f47a4c73ed6dc1de83f5914b43f6f5712 /src | |
parent | tree-wide: use parse_fd() (diff) | |
download | systemd-b45e3167089f709c08e4d5112030692c0238df8d.tar.xz systemd-b45e3167089f709c08e4d5112030692c0238df8d.zip |
main: improve log message
Diffstat (limited to 'src')
-rw-r--r-- | src/core/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/main.c b/src/core/main.c index ab545a6421..f36f6c4c9e 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -1004,7 +1004,7 @@ static int parse_argv(int argc, char *argv[]) { fd = parse_fd(optarg); if (fd == -ERANGE) - return log_error_errno(fd, "Invalid deserialize fd: %s", optarg); + return log_error_errno(fd, "Invalid serialization fd: %s", optarg); if (fd < 0) return log_error_errno(fd, "Failed to parse deserialize option \"%s\": %m", optarg); |