tools: acrn-manager: fix a potential compiler warning

Tracked-On: #1479
Signed-off-by: Yan, Like <like.yan@intel.com>
This commit is contained in:
Yan, Like 2018-10-19 22:57:43 +08:00 committed by wenlingz
parent e8c86566b1
commit 4ce80e5ccc
1 changed files with 4 additions and 1 deletions

View File

@ -47,7 +47,10 @@ int shell_cmd(const char *cmd, char *outbuf, int len);
*/
void vmmngr_update(void);
extern LIST_HEAD(vmmngr_list_struct, vmmngr_struct) vmmngr_head;
struct vmmngr_list_struct {
struct vmmngr_struct *lh_first;
};
extern struct vmmngr_list_struct vmmngr_head;
/* vm life cycle ops */
int list_vm(void);