]> granicus.if.org Git - cgit/commitdiff
use correct type for sizeof
authorJamie Couture <jamie.couture@gmail.com>
Thu, 12 Jan 2012 03:38:49 +0000 (22:38 -0500)
committerLars Hjemli <hjemli@gmail.com>
Sun, 18 Mar 2012 09:26:31 +0000 (09:26 +0000)
**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>
ui-ssdiff.c

index 45770b1a547fe773dc959a2acc49eebcef74a7f1..0cff4b82ed46c8bc41e07c1392dd9c8e9e3ff75a 100644 (file)
@@ -23,7 +23,7 @@ static void create_or_reset_lcs_table()
        int i;
 
        if (L != NULL) {
-               memset(*L, 0, sizeof(*L) * MAX_SSDIFF_SIZE);
+               memset(*L, 0, sizeof(int) * MAX_SSDIFF_SIZE);
                return;
        }