htex

simple incorrect html parser
git clone git://git.relim.de/htex.git
Log | Files | Refs | README

commit 2b001c8bc1c65a00db138c7a491c245425f33204
parent 7bc2de577806b2c880cb056afd5f0abdcbb95672
Author: Robin <kroekerrobin@gmail.com>
Date:   Thu,  4 Apr 2024 10:42:32 +0200

Remove cast

Diffstat:
Mhtex.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/htex.c b/htex.c @@ -217,7 +217,7 @@ int main(int argc, char *argv[]) struct FindOpts *options = find_opts_parse(search_pattern); options->out = out; options->is_except = is_except; - options->limit = (size_t)limit; + options->limit = limit; html_filter(text, options); free(output); find_opts_free(options);