summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc-André Lemburg <mal@egenix.com>2000-07-07 17:45:37 (GMT)
committerMarc-André Lemburg <mal@egenix.com>2000-07-07 17:45:37 (GMT)
commitfa1309fd728c57558e0b80d34a0af6ca076cdbf1 (patch)
tree1ce93c322b0317ca56ecd0dd16a588c6327afdba
parentc826ecbf8fc8fed5bdb1b22b6d46a2bdace1c1e0 (diff)
downloadcpython-fa1309fd728c57558e0b80d34a0af6ca076cdbf1.zip
cpython-fa1309fd728c57558e0b80d34a0af6ca076cdbf1.tar.gz
cpython-fa1309fd728c57558e0b80d34a0af6ca076cdbf1.tar.bz2
Fix to use Py_UCS4
-rw-r--r--Include/ucnhash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/ucnhash.h b/Include/ucnhash.h
index 713fd3d..7bf3f5d 100644
--- a/Include/ucnhash.h
+++ b/Include/ucnhash.h
@@ -15,6 +15,6 @@ typedef struct _Py_UCNHashAPI
typedef struct
{
const char *pszUCN;
- unsigned int uiValue;
+ Py_UCS4 value;
} _Py_UnicodeCharacterName;