summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2003-04-15 20:58:40 +0000
committerOwen Taylor <otaylor@src.gnome.org>2003-04-15 20:58:40 +0000
commitf2a133be392d628cedf90fadf2d217cc73cc1ca5 (patch)
tree0d03f2c9e676a8cc23b34ea12208c0f76261aec8 /modules
parent21137ffb5cdb77773638d25b06880074f4f3a03b (diff)
downloadpango-f2a133be392d628cedf90fadf2d217cc73cc1ca5.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,