build: Fix build when WITH_HAL is defined

Commit 7c9a2d88 missed inclusion of virstring.h in a few places
when WITH_HAL is defined, causing build failures.
This commit is contained in:
Jim Fehlig 2013-05-02 15:54:22 -06:00
parent 4f8e2bacc5
commit ce45c761d0
2 changed files with 2 additions and 0 deletions

View File

@ -33,6 +33,7 @@
#include "datatypes.h"
#include "viralloc.h"
#include "virlog.h"
#include "virstring.h"
#include "node_device_conf.h"
#include "node_device_hal.h"
#include "node_device_driver.h"

View File

@ -39,6 +39,7 @@
#include "virlog.h"
#include "node_device_driver.h"
#include "virdbus.h"
#include "virstring.h"
#define VIR_FROM_THIS VIR_FROM_NODEDEV