From 659832053424518a94e55ae3681f9a5a16906b94 Mon Sep 17 00:00:00 2001 From: liljencrantz Date: Thu, 17 Jan 2008 08:26:28 +1000 Subject: [PATCH] Remove useless stray argument in function call darcs-hash:20080116222628-75c98-a307fbeacdd815edcedea05930dc8b4bb064acb3.gz --- builtin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin.c b/builtin.c index ba6f3a00c..55dbd3438 100644 --- a/builtin.c +++ b/builtin.c @@ -2657,7 +2657,7 @@ static int builtin_cd( wchar_t **argv ) res = 1; } - else if( !env_set_pwd(L"PWD") ) + else if( !env_set_pwd() ) { res=1; sb_printf( sb_err, _( L"%ls: Could not set PWD variable\n" ), argv[0] );