diff options
Diffstat (limited to 'source3/lib/replace/replace.c')
| -rw-r--r-- | source3/lib/replace/replace.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/replace/replace.c b/source3/lib/replace/replace.c index 6930f9b079..443da2ab24 100644 --- a/source3/lib/replace/replace.c +++ b/source3/lib/replace/replace.c @@ -458,7 +458,7 @@ char *rep_strcasestr(const char *haystack, const char *needle)  	for (s=haystack;*s;s++) {  		if (toupper(*needle) == toupper(*s) &&  		    strncasecmp(s, needle, nlen) == 0) { -			return (char *)((intptr_t)s); +			return (char *)((uintptr_t)s);  		}  	}  	return NULL;  | 
