View | Details | Raw Unified | Return to bug 23084
Collapse All | Expand All

(-)a/fortune-mod/fortune/fortune.c (-1 / +1 lines)
Lines 290-296 void usage(void) Link Here
290
 *      Translate text from UTF-8 to current CODESET (LC_CTYPE).
290
 *      Translate text from UTF-8 to current CODESET (LC_CTYPE).
291
 * Thanx to Alexander Bokovoy for this code.
291
 * Thanx to Alexander Bokovoy for this code.
292
 */
292
 */
293
int fortune_iconv(iconv_t _cd, char *inbuf, int inlen, char *outbuf, int outlen)
293
int fortune_iconv(iconv_t _cd, char *inbuf, size_t inlen, char *outbuf, size_t outlen)
294
{
294
{
295
    char *outptr;
295
    char *outptr;
296
    size_t n;
296
    size_t n;

Return to bug 23084