Remove extra lines

This commit is contained in:
Olof hagsand 2024-12-05 17:35:05 +01:00
parent 3332dfef20
commit 69eaf98913
72 changed files with 1 additions and 98 deletions

View file

@ -154,7 +154,6 @@ utf16_literal_to_utf8(const unsigned char *const input, int len,
goto fail;
}
/* calculate the unicode codepoint from the surrogate pair */
codepoint = 0x10000 + (((first_code & 0x3FF) << 10) | (second_code & 0x3FF));
} else {
@ -471,4 +470,3 @@ regex_free(clixon_handle h,
done:
return retval;
}