From: Bruno Haible Date: Sat, 27 Oct 2007 22:30:12 +0000 (+0000) Subject: Fix comment. X-Git-Tag: v0.17~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68567691622e7b740ddc66d0ac61871d243cfae6;p=thirdparty%2Fgettext.git Fix comment. --- diff --git a/gettext-tools/src/filter-sr-latin.c b/gettext-tools/src/filter-sr-latin.c index 06b4966a1..bb7e99c6c 100644 --- a/gettext-tools/src/filter-sr-latin.c +++ b/gettext-tools/src/filter-sr-latin.c @@ -1,5 +1,5 @@ /* Recode Serbian text from Cyrillic to Latin script. - Copyright (C) 2006 Free Software Foundation, Inc. + Copyright (C) 2006-2007 Free Software Foundation, Inc. Written by Danilo Å egan , 2006, and Bruno Haible , 2006. @@ -156,8 +156,8 @@ serbian_to_latin (const char *input, size_t input_len, beginning of a character; the second and further bytes of a character are all in the range \x80..\xBF. */ - /* Since sequences of 2 bytes are sequences of at most 3 bytes, the size - of the output will be at most 1.5 * input_len. */ + /* Since sequences of 2 bytes are mapped to sequences of at most 3 bytes, + the size of the output will be at most 1.5 * input_len. */ size_t allocated = input_len + (input_len >> 1); char *output = XNMALLOC (allocated, char);