1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 18:56:39 +02:00

(canonicalize_file_name): Remove stray semicolon

that caused `readlink --canonical RELATIVE_NAME' to fail on e.g.,
Solaris systems.
This commit is contained in:
Jim Meyering
2003-04-10 15:57:45 +00:00
parent 9419ec8854
commit 1b2123bba3

View File

@@ -130,7 +130,7 @@ canonicalize_file_name (const char *name)
{
char *wd;
if (!(wd = xgetcwd ()));
if (!(wd = xgetcwd ()))
return NULL;
extra_buf = path_concat (wd, name, NULL);