Commit ae5c839b by Zack Weinberg Committed by Zack Weinberg

fixincl.c: Move declarations of 'pz_fname' and 'pz_scan' into scope of entire function.

 	* fixinc/fixincl.c: Move declarations of 'pz_fname' and
	'pz_scan' into scope of entire function.  Only affects
	compiles with -DDEBUG.

From-SVN: r31564
parent e8c3586a
2000-01-22 Zack Weinberg <zack@wolery.cumb.org>
* fixinc/fixincl.c: Move declarations of 'pz_fname' and
'pz_scan' into scope of entire function. Only affects
compiles with -DDEBUG.
2000-01-22 Alan Modra <alan@SPRI.Levels.UniSA.Edu.Au> 2000-01-22 Alan Modra <alan@SPRI.Levels.UniSA.Edu.Au>
* config/elfos.h (UNIQUE_SECTION): Restore uninitialised data * config/elfos.h (UNIQUE_SECTION): Restore uninitialised data
......
...@@ -1089,6 +1089,8 @@ fix_applies (p_fixd) ...@@ -1089,6 +1089,8 @@ fix_applies (p_fixd)
#ifdef DEBUG #ifdef DEBUG
static const char z_failed[] = "not applying %s to %s - test %d failed\n"; static const char z_failed[] = "not applying %s to %s - test %d failed\n";
#endif #endif
const char *pz_fname = pz_curr_file;
const char *pz_scan = p_fixd->file_list;
int test_ct; int test_ct;
tTestDesc *p_test; tTestDesc *p_test;
...@@ -1098,10 +1100,8 @@ fix_applies (p_fixd) ...@@ -1098,10 +1100,8 @@ fix_applies (p_fixd)
/* IF there is a file name restriction, /* IF there is a file name restriction,
THEN ensure the current file name matches one in the pattern */ THEN ensure the current file name matches one in the pattern */
if (p_fixd->file_list != (char *) NULL) if (pz_scan != (char *) NULL)
{ {
const char *pz_fname = pz_curr_file;
const char *pz_scan = p_fixd->file_list;
size_t name_len; size_t name_len;
while ((pz_fname[0] == '.') && (pz_fname[1] == '/')) while ((pz_fname[0] == '.') && (pz_fname[1] == '/'))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment