summaryrefslogtreecommitdiff
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
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)
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLog.pre-1-106
-rw-r--r--ChangeLog.pre-1-46
-rw-r--r--ChangeLog.pre-1-66
-rw-r--r--ChangeLog.pre-1-86
-rw-r--r--modules/indic/indic-ot.h4
6 files changed, 32 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index dab8b7ae..ea748ed1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+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)
+
Tue Apr 15 04:39:48 2003 Owen Taylor <otaylor@redhat.com>
* pango/pango-coverage.c (pango_coverage_set): Fix
diff --git a/ChangeLog.pre-1-10 b/ChangeLog.pre-1-10
index dab8b7ae..ea748ed1 100644
--- a/ChangeLog.pre-1-10
+++ b/ChangeLog.pre-1-10
@@ -1,3 +1,9 @@
+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)
+
Tue Apr 15 04:39:48 2003 Owen Taylor <otaylor@redhat.com>
* pango/pango-coverage.c (pango_coverage_set): Fix
diff --git a/ChangeLog.pre-1-4 b/ChangeLog.pre-1-4
index dab8b7ae..ea748ed1 100644
--- a/ChangeLog.pre-1-4
+++ b/ChangeLog.pre-1-4
@@ -1,3 +1,9 @@
+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)
+
Tue Apr 15 04:39:48 2003 Owen Taylor <otaylor@redhat.com>
* pango/pango-coverage.c (pango_coverage_set): Fix
diff --git a/ChangeLog.pre-1-6 b/ChangeLog.pre-1-6
index dab8b7ae..ea748ed1 100644
--- a/ChangeLog.pre-1-6
+++ b/ChangeLog.pre-1-6
@@ -1,3 +1,9 @@
+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)
+
Tue Apr 15 04:39:48 2003 Owen Taylor <otaylor@redhat.com>
* pango/pango-coverage.c (pango_coverage_set): Fix
diff --git a/ChangeLog.pre-1-8 b/ChangeLog.pre-1-8
index dab8b7ae..ea748ed1 100644
--- a/ChangeLog.pre-1-8
+++ b/ChangeLog.pre-1-8
@@ -1,3 +1,9 @@
+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)
+
Tue Apr 15 04:39:48 2003 Owen Taylor <otaylor@redhat.com>
* pango/pango-coverage.c (pango_coverage_set): Fix
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,