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;