summaryrefslogtreecommitdiffstats
path: root/libc/string/strchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/strchr.c')
-rw-r--r--libc/string/strchr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/string/strchr.c b/libc/string/strchr.c
index e33694c..31ba4e2 100644
--- a/libc/string/strchr.c
+++ b/libc/string/strchr.c
@@ -38,6 +38,6 @@ strchr(const char *p, int ch)
return((char *)p);
if (!*p)
return((char *)NULL);
- }
+ }
/* NOTREACHED */
}