hv: use uint32_t replace "unsigned int"

Since it's typedef in "include/lib/types.h"

Tracked-On: #861
Signed-off-by: Li, Fei1 <fei1.li@intel.com>
This commit is contained in:
Li, Fei1
2018-12-08 00:06:59 +08:00
committed by wenlingz
parent 8bafde9942
commit 473d871397
8 changed files with 13 additions and 13 deletions

View File

@@ -82,7 +82,7 @@ void do_logmsg(uint32_t severity, const char *fmt, ...)
/* Check if flags specify to output to memory */
if (do_mem_log) {
unsigned int i, msg_len;
uint32_t i, msg_len;
struct shared_buf *sbuf = (struct shared_buf *)per_cpu(sbuf, pcpu_id)[ACRN_HVLOG];
/* If sbuf is not ready, we just drop the massage */