mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-30 05:14:18 +08:00
2010-05-17 Michael Snyder <msnyder@vmware.com>
* python/py-auto-load.c: White space. * python/py-block.c: White space. * python/py-breakpoint.c: White space. * python/py-cmd.c: White space. * python/py-function.c: White space. * python/py-lazy-string.c: White space. * python/py-objfile.c: White space. * python/py-param.c: White space. * python/py-prettyprint.c: White space. * python/py-progspace.c: White space. * python/py-symtab.c: White space. * python/python.c: White space. * python/py-type.c: White space. * python/py-utils.c: White space. * python/py-value.c: White space.
This commit is contained in:
@ -322,8 +322,8 @@ symtab_and_line_to_sal_object (struct symtab_and_line sal)
|
||||
{
|
||||
sal_object *sal_obj;
|
||||
int success = 0;
|
||||
sal_obj = PyObject_New (sal_object, &sal_object_type);
|
||||
|
||||
sal_obj = PyObject_New (sal_object, &sal_object_type);
|
||||
if (sal_obj)
|
||||
{
|
||||
success = set_sal (sal_obj, sal);
|
||||
@ -365,6 +365,7 @@ static void
|
||||
del_objfile_symtab (struct objfile *objfile, void *datum)
|
||||
{
|
||||
symtab_object *obj = datum;
|
||||
|
||||
while (obj)
|
||||
{
|
||||
symtab_object *next = obj->next;
|
||||
@ -385,6 +386,7 @@ static void
|
||||
del_objfile_sal (struct objfile *objfile, void *datum)
|
||||
{
|
||||
sal_object *obj = datum;
|
||||
|
||||
while (obj)
|
||||
{
|
||||
sal_object *next = obj->next;
|
||||
|
Reference in New Issue
Block a user