There is no need to do that since both fallible functions do that already.
Signed-off-by: Martin Kletzander <mkletzan(a)redhat.com>
---
src/remote/remote_daemon.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/src/remote/remote_daemon.c b/src/remote/remote_daemon.c
index 8a4610da83c8..84157e6cc19a 100644
--- a/src/remote/remote_daemon.c
+++ b/src/remote/remote_daemon.c
@@ -826,10 +826,8 @@ int main(int argc, char **argv) {
};
if (virGettextInitialize() < 0 ||
- virInitialize() < 0) {
- fprintf(stderr, _("%s: initialization failed\n"), argv[0]);
+ virInitialize() < 0)
exit(EXIT_FAILURE);
- }
virUpdateSelfLastChanged(argv[0]);
--
2.34.1