mirror of https://github.com/MidnightCommander/mc
(mc_search_set_error): cleanup compile warning on older gcc compilers:
search.c: In function 'mc_search_set_error': search.c:497:36: error: declaration of 'mc_search' shadows a global declaration [-Werror=shadow] search.c:419:1: error: shadowed declaration is here [-Werror=shadow] Signed-off-by: Andreas Mohr <and@gmx.li> Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
parent
bb782ad8ef
commit
e4badcf7bc
|
@ -168,7 +168,7 @@ int mc_search_getstart_result_by_num (mc_search_t *, int);
|
|||
int mc_search_getend_result_by_num (mc_search_t *, int);
|
||||
|
||||
/* *INDENT-OFF* */
|
||||
void mc_search_set_error (mc_search_t * mc_search, mc_search_error_t code, const gchar * format, ...)
|
||||
void mc_search_set_error (mc_search_t * lc_mc_search, mc_search_error_t code, const gchar * format, ...)
|
||||
G_GNUC_PRINTF (3, 4);
|
||||
/* *INDENT-ON* */
|
||||
|
||||
|
|
|
@ -494,18 +494,18 @@ mc_search_getend_result_by_num (mc_search_t * lc_mc_search, int lc_index)
|
|||
*/
|
||||
|
||||
void
|
||||
mc_search_set_error (mc_search_t * mc_search, mc_search_error_t code, const gchar * format, ...)
|
||||
mc_search_set_error (mc_search_t * lc_mc_search, mc_search_error_t code, const gchar * format, ...)
|
||||
{
|
||||
mc_search->error = code;
|
||||
lc_mc_search->error = code;
|
||||
|
||||
MC_PTR_FREE (mc_search->error_str);
|
||||
MC_PTR_FREE (lc_mc_search->error_str);
|
||||
|
||||
if (format != NULL)
|
||||
{
|
||||
va_list args;
|
||||
|
||||
va_start (args, format);
|
||||
mc_search->error_str = g_strdup_vprintf (format, args);
|
||||
lc_mc_search->error_str = g_strdup_vprintf (format, args);
|
||||
va_end (args);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue