summaryrefslogtreecommitdiff
path: root/src/otvalid
diff options
context:
space:
mode:
authorJens Claudius <jens.claudius@yahoo.com>2006-08-22 14:24:30 +0000
committerJens Claudius <jens.claudius@yahoo.com>2006-08-22 14:24:30 +0000
commit088e44e87773d612d2be6433697c17b3733ec4da (patch)
tree12b5a3790145319bc5a7c44a37c93150a0927558 /src/otvalid
parent123429962025b376145a2541cc9b980722ad1440 (diff)
downloadfreetype2-088e44e87773d612d2be6433697c17b3733ec4da.tar.gz
2006-08-22 Jens Claudius <jens.claudius@yahoo.com>
Fix for previous commit, which caused many compiler warnings/errors about addresses of volatile objects passed as function arguments as non-volatile pointers. * freetype2/include/freetype/internal/ftvalid.h: Make FT_Validator typedef a pointer to a volatile object. * freetype2/src/gxvalid/gxvmod.c (gxv_load_table): Make function argument `table' a pointer to a volatile object. * freetype2/src/otvalid/otvmod.c (otv_load_table): Make function argument `table' a pointer to a volatile object.
Diffstat (limited to 'src/otvalid')
-rw-r--r--src/otvalid/otvmod.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/otvalid/otvmod.c b/src/otvalid/otvmod.c
index cc4ed89d1..9014d8fe8 100644
--- a/src/otvalid/otvmod.c
+++ b/src/otvalid/otvmod.c
@@ -39,10 +39,10 @@
static FT_Error
- otv_load_table( FT_Face face,
- FT_Tag tag,
- FT_Byte* *table,
- FT_ULong *table_len )
+ otv_load_table( FT_Face face,
+ FT_Tag tag,
+ FT_Byte* volatile* table,
+ FT_ULong* table_len )
{
FT_Error error;
FT_Memory memory = FT_FACE_MEMORY( face );