mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-22 04:25:18 +00:00
* src/qemu_driver.c: remove a warning when printing a file offset
daniel
This commit is contained in:
parent
61674cc17d
commit
25415eb104
@ -1,3 +1,7 @@
|
||||
Tue Jan 20 17:17:11 CET 2009 Daniel Veillard <veillard@redhat.com>
|
||||
|
||||
* src/qemu_driver.c: remove a warning when printing a file offset
|
||||
|
||||
Tue Jan 20 16:36:53 GMT 2009 Daniel P. Berrange <berrange@redhat.com>
|
||||
|
||||
Make RPC call dispatch threaded
|
||||
|
@ -213,7 +213,7 @@ qemudLogReadFD(virConnectPtr conn, const char* logDir, const char* name, off_t p
|
||||
if (lseek(fd, pos, SEEK_SET) < 0) {
|
||||
qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
|
||||
_("Unable to seek to %lld in %s: %s"),
|
||||
pos, logfile, strerror(errno));
|
||||
(long long) pos, logfile, strerror(errno));
|
||||
close(fd);
|
||||
}
|
||||
return fd;
|
||||
|
Loading…
x
Reference in New Issue
Block a user