diff options
author | wdenk <wdenk> | 2002-11-03 18:03:52 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2002-11-03 18:03:52 +0000 |
commit | 699b13a6064e642280caffaa83c10b359a6c1114 (patch) | |
tree | 8883f63834e4328bf51ff1341678b30ae2ffe9a5 /common/cmd_autoscript.c | |
parent | 24ee89b97a49826ea800b4a6c0d5c0769328e317 (diff) |
* Fix mdelay() on TRAB - this was still the debugging version with
seconds instead of ms.
* Patch by Robert Schwebel, 1 Nov 2002:
XScale related cleanup (affects all ARM boards)
* Cleanup of names, warnings and README.
Diffstat (limited to 'common/cmd_autoscript.c')
-rw-r--r-- | common/cmd_autoscript.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_autoscript.c b/common/cmd_autoscript.c index 49bd463f699..7e706c93a73 100644 --- a/common/cmd_autoscript.c +++ b/common/cmd_autoscript.c @@ -106,7 +106,7 @@ autoscript (ulong addr) return 1; } - debug ("** Script length: %d\n", len); + debug ("** Script length: %ld\n", len); if ((cmd = malloc (len + 1)) == NULL) { return 1; |