aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--regex.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 98edbfa9dd..1eb75bae02 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,12 @@ Fri Sep 22 13:58:51 2000 WATANABE Hirofumi <eban@os.rim.or.jp>
* ext/extmk.rb.in: don't use default $:
+Fri Sep 22 13:42:50 2000 Katsuyuki Komatsu <komatsu@sarion.co.jp>
+
+ * regex.c (PUSH_FAILURE_COUNT): avoid casting warning on alpha.
+
+ * regex.c (PUSH_FAILURE_POINT): ditto.
+
Fri Sep 22 10:16:21 2000 WATANABE Hirofumi <eban@os.rim.or.jp>
* win32/config.h.in: add HAVE_TELLDIR, HAVE_SEEKDIR
diff --git a/regex.c b/regex.c
index 307b6af1aa..47da2ffdf3 100644
--- a/regex.c
+++ b/regex.c
@@ -3366,7 +3366,7 @@ re_search(bufp, string, size, startpos, range, regs)
int c; \
EXTRACT_NUMBER(c, ptr); \
ENSURE_FAIL_STACK(NUM_COUNT_ITEMS); \
- *stackp++ = (unsigned char*)c; \
+ *stackp++ = (unsigned char*)(long)c; \
*stackp++ = (ptr); \
num_failure_counts++; \
} while (0)
@@ -3385,7 +3385,7 @@ re_search(bufp, string, size, startpos, range, regs)
break; \
\
ENSURE_FAIL_STACK(NUM_FAILURE_ITEMS); \
- *stackp++ = (unsigned char*)num_failure_counts; \
+ *stackp++ = (unsigned char*)(long)num_failure_counts; \
num_failure_counts = 0; \
\
/* Now push the info for each of those registers. */ \