From 1a5370a2531a1fd8958eb4220f2402e400edf76d Mon Sep 17 00:00:00 2001 From: "huihuang.shi" Date: Mon, 28 May 2018 13:29:56 +0800 Subject: [PATCH] fix "warning:redefinition of typedef 'uint32_t'" uint32_t occures two times in hypervisor/include/lib/types.h, remove one of them. Signed-off-by: huihuang.shi --- hypervisor/include/lib/types.h | 1 - 1 file changed, 1 deletion(-) diff --git a/hypervisor/include/lib/types.h b/hypervisor/include/lib/types.h index 558af79e0..fbc710c91 100644 --- a/hypervisor/include/lib/types.h +++ b/hypervisor/include/lib/types.h @@ -48,7 +48,6 @@ /* Define standard data types. These definitions allow software components * to perform in the same manner on different target platforms. */ -typedef unsigned int uint32_t; typedef signed char int8_t; typedef unsigned char uint8_t; typedef signed short int16_t;