1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-10-27 11:34:09 +03:00

Wed Nov 28 14:20:00 GMT 2007 Richard W.M. Jones <rjones@redhat.com>

* src/virsh.c: Missing comma.
This commit is contained in:
Richard W.M. Jones
2007-11-28 14:22:30 +00:00
parent 55311d6c38
commit df0525a911
2 changed files with 5 additions and 1 deletions

View File

@@ -4644,7 +4644,7 @@ vshCloseLogFile(vshControl *ctl)
/* log file close */
if (ctl->log_fd >= 0) {
if (close(ctl->log_fd) < 0)
vshError(ctl, FALSE, _("%s: failed to write log file: %s")
vshError(ctl, FALSE, _("%s: failed to write log file: %s"),
ctl->logfile ? ctl->logfile : "?", strerror (errno));
ctl->log_fd = -1;
}