* breakpoint.c (print_one_breakpoint_location): ARI fix:
Replace asprintf by xstrprintf.
+2007-10-08 Pierre Muller <muller@ics.u-strasbg.fr>
+
+ * breakpoint.c (print_one_breakpoint_location): ARI fix:
+ Replace asprintf by xstrprintf.
+
2007-10-08 Pierre Muller <muller@ics.u-strasbg.fr>
* linux-fork.c: ARI fix: include "gdb_dirent.h" instead of <dirent.h>.
if (part_of_multiple)
{
char *formatted;
- asprintf (&formatted, "%d.%d", b->number, loc_number);
+ formatted = xstrprintf ("%d.%d", b->number, loc_number);
ui_out_field_string (uiout, "number", formatted);
xfree (formatted);
}