commit 45d02994aecbf841d4d0bf6b0ceb5d685832f1d6
parent 05d47383d977a9cb3bd69ac2c9636cc0ca9e06f6
Author: Robin <kroekerrobin@gmail.com>
Date: Mon, 10 Oct 2022 21:11:36 +0200
Remove unnecessary counter vars
Diffstat:
1 file changed, 0 insertions(+), 2 deletions(-)
diff --git a/htex.c b/htex.c
@@ -171,7 +171,6 @@ void find_html_tag_by_class(char *class_name) {
}
}
if (failure == 0) {
- // counter++;
if (inner_html) {
int start_of_open_tag_pos = find_start_of_opening_tag_pos(k);
find_tag_name(start_of_open_tag_pos);
@@ -255,7 +254,6 @@ void find_html_tag_by_id(char *id_name) {
}
}
if (failure == 0) {
- // counter++;
if (inner_html) {
int start_of_open_tag_pos = find_start_of_opening_tag_pos(k);
find_tag_name(start_of_open_tag_pos);