fixed some warnings
[reactos.git] / reactos / lib / string / strstr.c
index 4482a51..7e5127b 100644 (file)
@@ -20,5 +20,5 @@ strstr(const char *s, const char *find)
     } while (strncmp(s, find, len) != 0);
     s--;
   }
-  return (char *)s;
+  return (char *)((size_t)s);
 }