* symtab.c (find_line_common): Always set exact_match.
+2007-12-31 Daniel Jacobowitz <dan@codesourcery.com>
+
+ * remote.c (unpack_nibble): Use fromhex.
+ * symtab.c (find_line_common): Always set exact_match.
+
2007-12-31 Daniel Jacobowitz <dan@codesourcery.com>
* hppa-linux-nat.c: Use hppa-linux-offsets.h.
static char *
unpack_nibble (char *buf, int *val)
{
- ishex (*buf++, val);
+ *val = fromhex (*buf++);
return buf;
}
int best_index = -1;
int best = 0;
+ *exact_match = 0;
+
if (lineno <= 0)
return -1;
if (l == 0)
}
/* If we got here, we didn't get an exact match. */
-
- *exact_match = 0;
return best_index;
}