* utils.c (string_to_core_addr): Comment typo.

This commit is contained in:
Maciej W. Rozycki 2007-03-30 09:31:31 +00:00
parent 8a9fc081fa
commit ced572fe59
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-03-30 Chris Dearman <chris@mips.com>
* utils.c (string_to_core_addr): Comment typo.
2007-03-30 Chris Dearman <chris@mips.com>
* mips-tdep.c: Comment typo.

View File

@ -2842,7 +2842,7 @@ string_to_core_addr (const char *my_string)
CORE_ADDR addr = 0;
if (my_string[0] == '0' && tolower (my_string[1]) == 'x')
{
/* Assume that it is in decimal. */
/* Assume that it is in hex. */
int i;
for (i = 2; my_string[i] != '\0'; i++)
{