Minor fix
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -103,7 +103,7 @@ main (int argc, char **argv) | ... | @@ -103,7 +103,7 @@ main (int argc, char **argv) |
103 | 103 | ||
104 | for (j = 0; j < nmatch; j++) | 104 | for (j = 0; j < nmatch; j++) |
105 | printf ("%02zu: %.*s\n", j, | 105 | printf ("%02zu: %.*s\n", j, |
106 | matches[j].rm_eo - matches[j].rm_so, | 106 | (int) (matches[j].rm_eo - matches[j].rm_so), |
107 | a + matches[j].rm_so); | 107 | a + matches[j].rm_so); |
108 | } | 108 | } |
109 | } | 109 | } | ... | ... |
-
Please register or sign in to post a comment