* corefile.c (core_create_syms_from): Use BFD_VMA_FMT when

scanning in an address.
This commit is contained in:
Nick Clifton 2009-06-15 08:48:49 +00:00
parent b80ee1aa0e
commit f89ddd70e7
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-06-15 Homer Xing <homer.xing@yahoo.com>
* corefile.c (core_create_syms_from): Use BFD_VMA_FMT when
scanning in an address.
2009-06-12 Homer Xing <homer.xing@yahoo.com>
* corefile.c (num_of_syms_in): New function - computes the number

View File

@ -509,7 +509,7 @@ core_create_syms_from (const char * sym_table_file)
sym_init (symtab.limit);
sscanf (address, "%lx", &(symtab.limit->addr) );
sscanf (address, "%" BFD_VMA_FMT "x", &(symtab.limit->addr) );
symtab.limit->name = (char *) xmalloc (strlen (name) + 1);
strcpy ((char *) symtab.limit->name, name);