Remove trailing whitespace.
Whitespace cleanup. * python/py-breakpoint.c: Remove trailing whitespace. * python/py-cmd.c: Ditto. * python/py-evts.c: Ditto. * python/py-finishbreakpoint.c: Ditto. * python/py-frame.c: Ditto. * python/py-function.c: Ditto. * python/py-inferior.c: Ditto. * python/py-infthread.c: Ditto. * python/py-param.c: Ditto. * python/py-prettyprint.c: Ditto. * python/py-symbol.c: Ditto. * python/py-type.c: Ditto. * python/py-utils.c: Ditto. * python/py-value.c: Ditto. * python/python-internal.h: Ditto. * python/python.c: Ditto.
This commit is contained in:
parent
c9ae340d17
commit
256458bc0e
17 changed files with 126 additions and 106 deletions
|
@ -274,7 +274,7 @@ delete_thread_object (struct thread_info *tp, int ignore)
|
|||
struct cleanup *cleanup;
|
||||
inferior_object *inf_obj;
|
||||
struct threadlist_entry **entry, *tmp;
|
||||
|
||||
|
||||
if (!gdb_python_initialized)
|
||||
return;
|
||||
|
||||
|
@ -559,9 +559,9 @@ get_buffer (PyObject *self, Py_buffer *buf, int flags)
|
|||
{
|
||||
membuf_object *membuf_obj = (membuf_object *) self;
|
||||
int ret;
|
||||
|
||||
|
||||
ret = PyBuffer_FillInfo (buf, self, membuf_obj->buffer,
|
||||
membuf_obj->length, 0,
|
||||
membuf_obj->length, 0,
|
||||
PyBUF_CONTIG);
|
||||
buf->format = "c";
|
||||
|
||||
|
@ -647,7 +647,7 @@ infpy_search_memory (PyObject *self, PyObject *args, PyObject *kw)
|
|||
pattern_size = pybuf.len;
|
||||
#else
|
||||
PyObject *pattern;
|
||||
|
||||
|
||||
if (! PyArg_ParseTupleAndKeywords (args, kw, "OOO", keywords,
|
||||
&start_addr_obj, &length_obj,
|
||||
&pattern))
|
||||
|
@ -667,7 +667,7 @@ infpy_search_memory (PyObject *self, PyObject *args, PyObject *kw)
|
|||
|
||||
if (get_addr_from_python (start_addr_obj, &start_addr) < 0)
|
||||
goto fail;
|
||||
|
||||
|
||||
if (get_addr_from_python (length_obj, &length) < 0)
|
||||
goto fail;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue