use correct type for sizeof

**L would have worked well too.  Depending on the distribution sizeof *L
may return 8 instead of 4. **L is preferable, but since we don't expect
this datatype to change very often, sizeof int is less subtle and easier
to understand.

Signed-off-by: Jamie Couture <jamie.couture@gmail.com>
This commit is contained in:
Jamie Couture 2012-01-11 22:38:49 -05:00 committad av Lars Hjemli
förälder 19c31231fa
incheckning 6a575b8900
1 ändrade filer med 1 tillägg och 1 borttagningar

Visa fil

@ -23,7 +23,7 @@ static void create_or_reset_lcs_table()
int i; int i;
if (L != NULL) { if (L != NULL) {
memset(*L, 0, sizeof(*L) * MAX_SSDIFF_SIZE); memset(*L, 0, sizeof(int) * MAX_SSDIFF_SIZE);
return; return;
} }