From 93b9e6503e13cb6243d3af55ae4b304397f40d74 Mon Sep 17 00:00:00 2001 From: Martin Kletzander Date: Wed, 30 Nov 2022 12:18:01 +0100 Subject: [PATCH] Fix couple of comment typos Signed-off-by: Martin Kletzander --- examples/c/admin/list_clients.c | 2 +- examples/c/admin/logging.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/c/admin/list_clients.c b/examples/c/admin/list_clients.c index 70907b4fba..169c9a7ec8 100644 --- a/examples/c/admin/list_clients.c +++ b/examples/c/admin/list_clients.c @@ -53,7 +53,7 @@ int main(int argc, char **argv) { int ret = -1; virAdmConnectPtr conn = NULL; - virAdmServerPtr srv = NULL; /* which server list the clients from */ + virAdmServerPtr srv = NULL; /* which server to list the clients from */ virAdmClientPtr *clients = NULL; /* where to store the servers */ ssize_t i = 0; int count = 0; diff --git a/examples/c/admin/logging.c b/examples/c/admin/logging.c index 730ae40d9d..575d15a3a6 100644 --- a/examples/c/admin/logging.c +++ b/examples/c/admin/logging.c @@ -77,7 +77,7 @@ int main(int argc, char **argv) goto cleanup; } - /* now, try to change the redefine the current log output and filters */ + /* now, try to change the current log output and filters */ if (virAdmConnectSetLoggingOutputs(conn, set_outputs, 0) < 0) goto cleanup;