summaryrefslogtreecommitdiff
path: root/mimeview
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2005-03-14 08:03:48 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2005-03-14 08:03:48 +0000
commitf885ce872fed0b0d807d8fbe18272d160b40665c (patch)
tree3967e9ebd2a3016dcbdbcc2475a5061aef753cf2 /mimeview
parentcb345645cb4925920dbb97bc0ca7f69aec2b64ba (diff)
downloadmailutils-f885ce872fed0b0d807d8fbe18272d160b40665c.tar.gz
mailutils-f885ce872fed0b0d807d8fbe18272d160b40665c.tar.bz2
(<HEX>): Bugfix
Diffstat (limited to 'mimeview')
-rw-r--r--mimeview/mimetypes.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/mimeview/mimetypes.l b/mimeview/mimetypes.l
index 5ab05a765..955ce18d1 100644
--- a/mimeview/mimetypes.l
+++ b/mimeview/mimetypes.l
@@ -106,7 +106,7 @@ WS [ \t]*
return STRING;
}
<HEX>{X}{X} {
- int c = digit_to_number (yytext[0]*16 + yytext[1]);
+ int c = digit_to_number (yytext[0])*16 + digit_to_number (yytext[1]);
obstack_1grow (&stack, c);
}
<HEX>">"/[ \t\\\n,)] {

Return to:

Send suggestions and report system problems to the System administrator.