mirror of https://github.com/xqemu/xqemu.git
nbd/server: fix TRACE in nbd_negotiate_send_rep_len
Fix wrong order of TRACE arguments. Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Message-Id: <20170707152918.23086-8-vsementsov@virtuozzo.com> Signed-off-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
parent
458d7a6939
commit
4875196163
|
@ -139,7 +139,7 @@ static int nbd_negotiate_send_rep_len(QIOChannel *ioc, uint32_t type,
|
||||||
uint64_t magic;
|
uint64_t magic;
|
||||||
|
|
||||||
TRACE("Reply opt=%" PRIx32 " type=%" PRIx32 " len=%" PRIu32,
|
TRACE("Reply opt=%" PRIx32 " type=%" PRIx32 " len=%" PRIu32,
|
||||||
type, opt, len);
|
opt, type, len);
|
||||||
|
|
||||||
magic = cpu_to_be64(NBD_REP_MAGIC);
|
magic = cpu_to_be64(NBD_REP_MAGIC);
|
||||||
if (nbd_write(ioc, &magic, sizeof(magic), errp) < 0) {
|
if (nbd_write(ioc, &magic, sizeof(magic), errp) < 0) {
|
||||||
|
|
Loading…
Reference in New Issue