diff options
Diffstat (limited to 'common/cmd_source.c')
| -rw-r--r-- | common/cmd_source.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/common/cmd_source.c b/common/cmd_source.c index 481241cfd..32fff5cec 100644 --- a/common/cmd_source.c +++ b/common/cmd_source.c @@ -179,7 +179,7 @@ source (ulong addr, const char *fit_uname)  				if (*line) {  					debug ("** exec: \"%s\"\n",  						line); -					if (builtin_run_command(line, 0) < 0) { +					if (run_command(line, 0) < 0) {  						rcode = 1;  						break;  					} @@ -189,7 +189,7 @@ source (ulong addr, const char *fit_uname)  			++next;  		}  		if (rcode == 0 && *line) -			rcode = (builtin_run_command(line, 0) >= 0); +			rcode = (run_command(line, 0) >= 0);  	}  #endif  	free (cmd); |