Shorten err msg

This commit is contained in:
Khairul Kasmiran 2018-10-07 10:59:09 +08:00
parent 88ebd1d772
commit fb8b10e5e9

View File

@ -743,7 +743,7 @@ static bool r_bin_mdmp_init_directory(struct r_bin_mdmp_obj *obj) {
ut64 bytes_left = rvadir < obj->size ? obj->size - rvadir : 0;
size_t max_entries = R_MIN (obj->hdr->number_of_streams, bytes_left / sizeof (struct minidump_directory));
if (max_entries < obj->hdr->number_of_streams) {
eprintf ("[ERROR] Number of streams = %u is greater than can be supported by bin size\n",
eprintf ("[ERROR] Number of streams = %u is greater than is supportable by bin size\n",
obj->hdr->number_of_streams);
}
/* Parse each entry in the directory */