summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2006-05-25 20:52:38 (GMT)
committerBob Ippolito <bob@redivi.com>2006-05-25 20:52:38 (GMT)
commit955b64c03139ec34ce9307960c3e36d6de20e559 (patch)
tree289e2a6c4e8a937e0e737419896f69c6ea4883b4 /Objects
parent0ed05875b24191c53a36520e4727c2c18c160f0e (diff)
downloadcpython-955b64c03139ec34ce9307960c3e36d6de20e559.zip
cpython-955b64c03139ec34ce9307960c3e36d6de20e559.tar.gz
cpython-955b64c03139ec34ce9307960c3e36d6de20e559.tar.bz2
squelch gcc4 darwin/x86 compiler warnings
Diffstat (limited to 'Objects')
-rw-r--r--Objects/stringobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/stringobject.c b/Objects/stringobject.c
index 560e30f..1088d3f 100644
--- a/Objects/stringobject.c
+++ b/Objects/stringobject.c
@@ -799,7 +799,7 @@ PyString_AsStringAndSize(register PyObject *obj,
#define FAST_SEARCH 1
LOCAL(Py_ssize_t)
- fastsearch(const unsigned char* s, Py_ssize_t n, const unsigned char* p,
+ fastsearch(const char* s, Py_ssize_t n, const char* p,
Py_ssize_t m, int mode)
{
long mask;