diff options
author | Michal Privoznik <mprivozn@redhat.com> | 2013-04-03 12:36:23 +0200 |
---|---|---|
committer | Michal Privoznik <mprivozn@redhat.com> | 2013-05-02 16:56:55 +0200 |
commit | 7c9a2d88cd80211cfc71e31489397c902fe3c997 (patch) | |
tree | 2e71a1510b95e219b9a52c6fb2bfd6a883032378 /tests/xml2vmxtest.c | |
parent | 297c99a5676c32d3d98c08c24499271c52fbb3fb (diff) | |
download | libvirt-7c9a2d88cd80211cfc71e31489397c902fe3c997.tar.gz |
virutil: Move string related functions to virstring.c
The source code base needs to be adapted as well. Some files
include virutil.h just for the string related functions (here,
the include is substituted to match the new file), some include
virutil.h without any need (here, the include is removed), and
some require both.
Diffstat (limited to 'tests/xml2vmxtest.c')
-rw-r--r-- | tests/xml2vmxtest.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/xml2vmxtest.c b/tests/xml2vmxtest.c index fa4f6f9fd0..38b5a4de49 100644 --- a/tests/xml2vmxtest.c +++ b/tests/xml2vmxtest.c @@ -11,6 +11,7 @@ # include "internal.h" # include "viralloc.h" # include "vmx/vmx.h" +# include "virstring.h" static virCapsPtr caps; static virVMXContext ctx; |