Problem: Compiler complains about uninitialized variable. (Tony Mechelynck)
Solution: Assign a value to the variable.
/* When "target" is 0; Back to origin. */
if (target == 0)
- goto found;
+ {
+ mark = lastmark; /* avoid that GCC complains */
+ goto target_zero;
+ }
/*
* May do this twice:
above = TRUE; /* stop above the header */
}
-found:
+target_zero:
/* If we found it: Follow the path to go to where we want to be. */
if (uhp != NULL || target == 0)
{
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1443,
/**/
1442,
/**/