make step unsigned in dump_data()

since it's muliplied with another unsigned int
This commit is contained in:
Klas Lindfors
2016-02-15 09:29:05 +01:00
parent 53667a22b0
commit 90f23029e1
+1 -1
View File
@@ -194,7 +194,7 @@ void dump_data(const unsigned char *buf, unsigned int len, FILE *output, bool sp
{
char tmp[3072 * 3 + 1];
unsigned int i;
int step = 2;
unsigned int step = 2;
if(space) step += 1;
if(len > 3072) {
return;