diff options
author | Tom Rini | 2017-11-19 20:35:45 -0500 |
---|---|---|
committer | Tom Rini | 2017-11-19 20:35:45 -0500 |
commit | 29c49922561676854482f2133037c16f60fcfba8 (patch) | |
tree | c8bd5b8d54b90d8e8d7f81db5774697dc574a1fd /common | |
parent | b6251db8c3f0de605b4cd6f15a00fc7dd19cda63 (diff) | |
parent | afc1a78a0bd5db69f72db1dfa07b4a37a54343f6 (diff) |
Merge git://git.denx.de/u-boot-dm
Diffstat (limited to 'common')
-rw-r--r-- | common/spl/spl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/spl.c b/common/spl/spl.c index aaddddd9958..d232f67ba95 100644 --- a/common/spl/spl.c +++ b/common/spl/spl.c @@ -154,7 +154,7 @@ int spl_parse_image_header(struct spl_image_info *spl_image, spl_image->os = image_get_os(header); spl_image->name = image_get_name(header); debug("spl: payload image: %.*s load addr: 0x%lx size: %d\n", - (int)sizeof(spl_image->name), spl_image->name, + IH_NMLEN, spl_image->name, spl_image->load_addr, spl_image->size); #else /* LEGACY image not supported */ |