diff options
author | Alon Levy <alevy@redhat.com> | 2012-04-25 12:13:20 +0300 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-05-03 10:45:04 +0200 |
commit | 2fce7edf46e23f287b7a72b328870f19646261cb (patch) | |
tree | 11f9ce3543d57658832708b9e5c29a2d163617c1 /hw | |
parent | 47eddfbfe061dd18aad525863375028b1ee78d5c (diff) | |
download | qemu-2fce7edf46e23f287b7a72b328870f19646261cb.zip qemu-2fce7edf46e23f287b7a72b328870f19646261cb.tar.gz qemu-2fce7edf46e23f287b7a72b328870f19646261cb.tar.bz2 |
qxl: fix > 80 chars line
Signed-off-by: Alon Levy <alevy@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/qxl.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -777,8 +777,8 @@ static void interface_async_complete_io(PCIQXLDevice *qxl, QXLCookie *cookie) } if (cookie && current_async != cookie->io) { fprintf(stderr, - "qxl: %s: error: current_async = %d != %" PRId64 " = cookie->io\n", - __func__, current_async, cookie->io); + "qxl: %s: error: current_async = %d != %" + PRId64 " = cookie->io\n", __func__, current_async, cookie->io); } switch (current_async) { case QXL_IO_MEMSLOT_ADD_ASYNC: |