diff options
Diffstat (limited to 'gdb/python')
-rw-r--r-- | gdb/python/py-frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/py-frame.c b/gdb/python/py-frame.c index 58cb8a0..bff3ea4 100644 --- a/gdb/python/py-frame.c +++ b/gdb/python/py-frame.c @@ -260,7 +260,7 @@ frapy_block (PyObject *self, PyObject *args) if (block == NULL || fn_block == NULL || BLOCK_FUNCTION (fn_block) == NULL) { PyErr_SetString (PyExc_RuntimeError, - _("Cannot locate object file for block.")); + _("Cannot locate block for frame.")); return NULL; } |