diff options
| author | Tom Rini <trini@ti.com> | 2014-01-10 10:56:00 -0500 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2014-01-10 10:56:00 -0500 | 
| commit | 7f673c99c2d8d1aa21996c5b914f06d784b080ca (patch) | |
| tree | df68108a0bd7326dc6299b96853b769220c55470 /common/cmd_pxe.c | |
| parent | 8401bfa91ef57e331e2a3abdf768d41803bec88e (diff) | |
| parent | 10a147bc665367111920be657409a5d56d3c0590 (diff) | |
| download | olio-uboot-2014.01-7f673c99c2d8d1aa21996c5b914f06d784b080ca.tar.xz olio-uboot-2014.01-7f673c99c2d8d1aa21996c5b914f06d784b080ca.zip | |
Merge branch 'master' of git://git.denx.de/u-boot-arm
Bringing in the MMC tree means that CONFIG_BOUNCE_BUFFER needed to be
added to include/configs/exynos5-dt.h now.
Conflicts:
	include/configs/exynos5250-dt.h
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'common/cmd_pxe.c')
| -rw-r--r-- | common/cmd_pxe.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/common/cmd_pxe.c b/common/cmd_pxe.c index db6b15698..c27ec354c 100644 --- a/common/cmd_pxe.c +++ b/common/cmd_pxe.c @@ -59,7 +59,7 @@ static int format_mac_pxe(char *outbuf, size_t outbuf_len)  	uchar ethaddr[6];  	if (outbuf_len < 21) { -		printf("outbuf is too small (%d < 21)\n", outbuf_len); +		printf("outbuf is too small (%zd < 21)\n", outbuf_len);  		return -EINVAL;  	} @@ -103,7 +103,7 @@ static int get_bootfile_path(const char *file_path, char *bootfile_path,  	path_len = (last_slash - bootfile) + 1;  	if (bootfile_path_size < path_len) { -		printf("bootfile_path too small. (%d < %d)\n", +		printf("bootfile_path too small. (%zd < %zd)\n",  				bootfile_path_size, path_len);  		return -1; |