* gdb/gdbserver/utils.c (paddress): Return phex_nz().

This commit is contained in:
Ozkan Sezer
2010-07-20 18:10:52 +00:00
parent f463846733
commit 5c3216e2a7
2 changed files with 13 additions and 11 deletions

View File

@@ -257,17 +257,6 @@ xsnprintf (char *str, size_t size, const char *format, ...)
return ret;
}
/* Convert a CORE_ADDR into a HEX string, like %lx.
The result is stored in a circular static buffer, NUMCELLS deep. */
char *
paddress (CORE_ADDR addr)
{
char *str = get_cell ();
xsnprintf (str, CELLSIZE, "%lx", (long) addr);
return str;
}
static char *
decimal2str (char *sign, ULONGEST addr, int width)
{
@@ -372,3 +361,12 @@ phex_nz (ULONGEST l, int sizeof_l)
return str;
}
/* Convert a CORE_ADDR into a HEX string, like %lx.
The result is stored in a circular static buffer, NUMCELLS deep. */
char *
paddress (CORE_ADDR addr)
{
return phex_nz (addr, sizeof (CORE_ADDR));
}