Skip to content
Snippets Groups Projects
Commit a452d7b3 authored by dprice's avatar dprice
Browse files

* checkout.c (findslash): Declare inputs const. Use ISSLASH().

parent 5fdaf5d6
No related branches found
No related tags found
No related merge requests found
......@@ -1095,7 +1095,7 @@ findslash (const char *start, const char *p)
{
for (;;)
{
if (ISSLASH (*p)) return (void *)p;
if (ISSLASH (*p)) return (char *)p;
if (p == start) break;
--p;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment