We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3acb5cc commit d1f501cCopy full SHA for d1f501c
1 file changed
src/common/oscap_pcre.c
@@ -43,9 +43,9 @@ struct oscap_pcre {
43
};
44
45
46
-static inline int _oscap_pcre_opts_to_pcre(oscap_pcre_options_t opts)
+static inline uint32_t _oscap_pcre_opts_to_pcre(oscap_pcre_options_t opts)
47
{
48
- int res = 0;
+ uint32_t res = 0;
49
if (opts & OSCAP_PCRE_OPTS_UTF8)
50
res |= PCRE2_UTF;
51
if (opts & OSCAP_PCRE_OPTS_MULTILINE)
0 commit comments