[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 2/5] Ensure all lex_readers have the encoding parameter
From: |
Ben Pfaff |
Subject: |
Re: [PATCH 2/5] Ensure all lex_readers have the encoding parameter |
Date: |
Thu, 8 Oct 2015 21:21:39 -0700 |
User-agent: |
Mutt/1.5.23 (2014-03-12) |
This yields a new warning:
../src/data/file-handle-def.c: In function 'fh_create_file':
../src/data/file-handle-def.c:230:68: error: unused parameter
'file_name_encoding' [-Werror=unused-parameter]
I'd prefer not to add commented-out code, as here:
{
char *handle_name;
struct file_handle *handle;
+ // printf ("%s:%d Creating file handle for file %s with encoding %s\n",
__FILE__, __LINE__, file_name, file_name_encoding);
Otherwise this makes sense, thanks!