summaryrefslogtreecommitdiff
path: root/Modules/sre.h
diff options
context:
space:
mode:
authorGustavo Niemeyer <gustavo@niemeyer.net>2004-02-14 00:31:13 +0000
committerGustavo Niemeyer <gustavo@niemeyer.net>2004-02-14 00:31:13 +0000
commit601b963be0c8ada918045577648b6f77b8e49440 (patch)
treeb2c44b374805248ea4cb94f4e985e5df35fec7f9 /Modules/sre.h
parenta6e436e4b4f94062f274746fc5d109e4203bf658 (diff)
downloadcpython-git-601b963be0c8ada918045577648b6f77b8e49440.tar.gz
- Fixing annoying warnings.
Diffstat (limited to 'Modules/sre.h')
-rw-r--r--Modules/sre.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/sre.h b/Modules/sre.h
index 452e77a725..ba8500b9c4 100644
--- a/Modules/sre.h
+++ b/Modules/sre.h
@@ -76,8 +76,8 @@ typedef struct {
void* mark[SRE_MARK_SIZE];
/* dynamically allocated stuff */
char* data_stack;
- int data_stack_size;
- int data_stack_base;
+ unsigned int data_stack_size;
+ unsigned int data_stack_base;
/* current repeat context */
SRE_REPEAT *repeat;
/* hooks */