mirror of
https://github.com/znc/znc.git
synced 2026-08-06 00:43:19 +02:00
099895b1f0
GCC parses "AA\xffA" greedily as \xffA (next character is a hex digit), which is out of range for char and breaks the Linux CI build. Split the literal into "AA\xff" "A" so the escape resolves before the next string, yielding the intended four bytes (A, A, 0xff, A).