diff options
author | Stefan Hajnoczi <stefanha@redhat.com> | 2016-03-30 13:46:34 +0100 |
---|---|---|
committer | Jeff Cody <jcody@redhat.com> | 2016-03-30 16:50:39 -0400 |
commit | 0d94b74655adadbeee135aee9bc105a41a524436 (patch) | |
tree | 39f90993a65e5cf29c31e95865e135d4c303ad0a | |
parent | d165b8cb8b45c228d6251dbcd62f59d49bcd7892 (diff) | |
download | qemu-0d94b74655adadbeee135aee9bc105a41a524436.tar.gz qemu-0d94b74655adadbeee135aee9bc105a41a524436.tar.bz2 qemu-0d94b74655adadbeee135aee9bc105a41a524436.zip |
block/nfs: add missing #include "qemu/cutils.h"
parse_uint_full() used to be included from qemu-common.h but was moved
to qemu/cutils.h in commit f348b6d1a53e5271cf1c9f9acc4646b4b98c1771
("util: move declarations out of qemu-common.h").
Cc: Veronia Bahaa <veroniabahaa@gmail.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-id: 1459341994-20567-3-git-send-email-stefanha@redhat.com
Signed-off-by: Jeff Cody <jcody@redhat.com>
-rw-r--r-- | block/nfs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/block/nfs.c b/block/nfs.c index 0c43dc7ffb..9f51cc3f10 100644 --- a/block/nfs.c +++ b/block/nfs.c @@ -33,6 +33,7 @@ #include "trace.h" #include "qemu/iov.h" #include "qemu/uri.h" +#include "qemu/cutils.h" #include "sysemu/sysemu.h" #include <nfsc/libnfs.h> |