Small fix in mkdir.c

Don't initialize p twice.
This commit is contained in:
FRIGN 2015-03-06 00:34:43 +01:00
parent edba90934d
commit 90751ab4ba
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
static int
mkdirp(char *path)
{
char *p = path;
char *p;
for (p = path; *p; p++) {
if (*p != '/')