X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/48a82e75469e3bea1eaa88b7fbd4d28a3f275af2..1da3cc1c0b20a17997b4a1dd255016d6c801abf5:/sbr/fmt_rfc2047.c diff --git a/sbr/fmt_rfc2047.c b/sbr/fmt_rfc2047.c index a43b5dc1..db8bf785 100644 --- a/sbr/fmt_rfc2047.c +++ b/sbr/fmt_rfc2047.c @@ -52,7 +52,7 @@ decode_qp (unsigned char byte1, unsigned char byte2) { if (hexindex[byte1] == -1 || hexindex[byte2] == -1) return -1; - return (hexindex[byte1] << 4 | hexindex[byte2]); + return hexindex[byte1] << 4 | hexindex[byte2]; } /* Check if character is linear whitespace */