From: Martin Kletzander Date: Wed, 30 Nov 2022 11:18:01 +0000 (+0100) Subject: Fix couple of comment typos X-Git-Tag: v8.10.0~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=93b9e6503e13cb6243d3af55ae4b304397f40d74;p=thirdparty%2Flibvirt.git Fix couple of comment typos Signed-off-by: Martin Kletzander --- 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;