summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2003-04-15 20:58:28 +0000
committerOwen Taylor <otaylor@src.gnome.org>2003-04-15 20:58:28 +0000
commit57adead4c3fb13fa662800bcec6719cecb8ac8bb (patch)
tree97c1516caedb4d19279c532ecaf2b68ca920d52d /modules
parent69e8015257ebe04ff5ee4ca314e5b706ab643811 (diff)
downloadpango-57adead4c3fb13fa662800bcec6719cecb8ac8bb.tar.gz
Cast some enumeration members that are bigger than signed integers to
Tue Apr 15 04:53:56 2003 Owen Taylor <otaylor@redhat.com> * modules/indic/indic-ot.h (enum): Cast some enumeration members that are bigger than signed integers to (int) to fix warning on AIX. (#107924)
Diffstat (limited to 'modules')
-rw-r--r--modules/indic/indic-ot.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/indic/indic-ot.h b/modules/indic/indic-ot.h
index a28885ca..2c2614e9 100644
--- a/modules/indic/indic-ot.h
+++ b/modules/indic/indic-ot.h
@@ -58,7 +58,7 @@ typedef enum
{
CF_CLASS_MASK = 0x0000FFFF,
- CF_CONSONANT = 0x80000000,
+ CF_CONSONANT = (int)0x80000000,
CF_REPH = 0x40000000,
CF_VATTU = 0x20000000,
@@ -85,7 +85,7 @@ typedef glong IndicOTCharClass;
*/
typedef enum
{
- SF_MATRAS_AFTER_BASE = 0x80000000,
+ SF_MATRAS_AFTER_BASE = (int)0x80000000,
SF_REPH_AFTER_BELOW = 0x40000000,
SF_EYELASH_RA = 0x20000000,
SF_MPRE_FIXUP = 0x10000000,