From 2c1238d3bee59056b3360f4bdac0cb1a578b58cd Mon Sep 17 00:00:00 2001 From: hasufell Date: Thu, 8 May 2014 17:38:22 +0200 Subject: [PATCH] Fix remaining uint8_t types --- types.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/types.h b/types.h index 1b3c4f1..adca994 100644 --- a/types.h +++ b/types.h @@ -28,7 +28,7 @@ */ #define STD_FILE_BUF 4096 -typedef unsigned int** FACE; +typedef uint32_t** FACE; typedef struct HE_edge HE_edge; typedef struct HE_vert HE_vert; @@ -103,15 +103,15 @@ struct HE_obj { /** * Count of edges. */ - uint8_t ec; + uint32_t ec; /** * Count of vertices. */ - uint8_t vc; + uint32_t vc; /** * Count of faces. */ - uint8_t fc; + uint32_t fc; };