From 3cc12e84462db0e66691547a84a189e74bff2c85 Mon Sep 17 00:00:00 2001 From: Cary R Date: Wed, 22 Dec 2010 09:35:21 -0800 Subject: [PATCH] V0.8: Update PLI_BYTE definition. The standard defines this as char not signed char. Using signed char was causing some compiler warnings in the vpi tests with modern compilers. --- _pli_types.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_pli_types.h.in b/_pli_types.h.in index 382f702b9..da6a796ea 100644 --- a/_pli_types.h.in +++ b/_pli_types.h.in @@ -39,7 +39,7 @@ typedef int32_t PLI_INT32; typedef signed short PLI_INT16; typedef unsigned short PLI_UINT16; -typedef signed char PLI_BYTE8; +typedef char PLI_BYTE8; typedef unsigned char PLI_UBYTE8; # define PLI_UINT64_FMT PRIu64