prevent unreached statement if pwd.h available

This commit is contained in:
dwarning 2010-09-04 12:41:04 +00:00
parent 69cc1eb730
commit 4d1bae86f0
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ tildexpand(char *string)
/* Emulate the old behavior to prevent side effects. -- ro */
return copy(string);
}
return NULL;
#endif
return NULL;
}