Kaydet (Commit) 29530886 authored tarafından Guido van Rossum's avatar Guido van Rossum

Remove CRLF line endings.

Fredrik Lundh: add two missing casts.
üst a25d7ddb
......@@ -219,10 +219,10 @@ SRE_AT(SRE_STATE* state, SRE_CHAR* ptr, SRE_CODE at)
switch (at) {
case 'a':
/* beginning */
return (ptr == state->beginning);
return ((void*) ptr == state->beginning);
case 'z':
/* end */
return (ptr == state->end);
return ((void*) ptr == state->end);
case 'b':
/* word boundary */
if (state->beginning == state->end)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment