small code-style fix - webdump - HTML to plain-text converter for webpages
HTML git clone git://git.codemadness.org/webdump
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit b1bbbf832f4d58fa11002a4deed5bfdbcc6d36a0
DIR parent 0d7d55bb8633594c343e92e3a77d34b2b4249374
HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Tue, 10 Mar 2026 18:37:36 +0100
small code-style fix
Diffstat:
M webdump.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/webdump.c b/webdump.c
@@ -2091,7 +2091,7 @@ xmltagstartparsed(XMLParser *p, const char *t, size_t tl, int isshort)
}
/* <select><option> */
- if (cur->tag.displaytype & DisplayOption && parent) {
+ if ((cur->tag.displaytype & DisplayOption) && parent) {
/* <select multiple>: show all options */
if (parent->tag.displaytype & DisplaySelectMulti)
cur->tag.displaytype |= DisplayBlock;