Browse Source

prevent unreached statement if pwd.h available

pre-master-46
dwarning 16 years ago
parent
commit
4d1bae86f0
  1. 2
      src/misc/tilde.c

2
src/misc/tilde.c

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