diff options
Diffstat (limited to 'gdbsupport/common-regcache.cc')
-rw-r--r-- | gdbsupport/common-regcache.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdbsupport/common-regcache.cc b/gdbsupport/common-regcache.cc index 3515bed..c2d2b9a 100644 --- a/gdbsupport/common-regcache.cc +++ b/gdbsupport/common-regcache.cc @@ -30,7 +30,7 @@ regcache_raw_get_unsigned (struct regcache *regcache, int regnum) status = regcache_raw_read_unsigned (regcache, regnum, &value); if (status == REG_UNAVAILABLE) - throw_error (NOT_AVAILABLE_ERROR, - _("Register %d is not available"), regnum); + throw_error (NOT_AVAILABLE_ERROR, _ ("Register %d is not available"), + regnum); return value; } |