imxtools: fix missing '\n'

Change-Id: I93630f5c303064deb5880421202425046aa3074f
This commit is contained in:
Amaury Pouly 2012-04-25 13:35:55 +02:00
parent b9f9d0da51
commit a0009907de

View file

@ -671,11 +671,12 @@ struct sb_file_t *sb_read_file(const char *filename, bool raw_mode, void *u,
if(memcmp(sb_header->signature, "STMP", 4) != 0) if(memcmp(sb_header->signature, "STMP", 4) != 0)
fatal(SB_FORMAT_ERROR, "Bad signature\n"); fatal(SB_FORMAT_ERROR, "Bad signature\n");
if(sb_header->image_size * BLOCK_SIZE > filesize) if(sb_header->image_size * BLOCK_SIZE > filesize)
fatal(SB_FORMAT_ERROR, "File too small"); fatal(SB_FORMAT_ERROR, "File too small (should be at least %d bytes)\n",
sb_header->image_size * BLOCK_SIZE);
if(sb_header->header_size * BLOCK_SIZE != sizeof(struct sb_header_t)) if(sb_header->header_size * BLOCK_SIZE != sizeof(struct sb_header_t))
fatal(SB_FORMAT_ERROR, "Bad header size"); fatal(SB_FORMAT_ERROR, "Bad header size\n");
if(sb_header->sec_hdr_size * BLOCK_SIZE != sizeof(struct sb_section_header_t)) if(sb_header->sec_hdr_size * BLOCK_SIZE != sizeof(struct sb_section_header_t))
fatal(SB_FORMAT_ERROR, "Bad section header size"); fatal(SB_FORMAT_ERROR, "Bad section header size\n");
if(filesize > sb_header->image_size * BLOCK_SIZE) if(filesize > sb_header->image_size * BLOCK_SIZE)
{ {