diff options
Diffstat (limited to 'gdb/solib-osf.c')
-rw-r--r-- | gdb/solib-osf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/solib-osf.c b/gdb/solib-osf.c index 2ed7c3b..02bf7b1 100644 --- a/gdb/solib-osf.c +++ b/gdb/solib-osf.c @@ -221,7 +221,8 @@ fetch_sec_names (struct lm_info *lmi) target_read_string (lms->nameaddr, &name, PATH_MAX, &errcode); if (errcode != 0) { - warning (_("unable to read shared sec name at 0x%lx"), lms->nameaddr); + warning (_("unable to read shared sec name at 0x%lx"), + lms->nameaddr); name = xstrdup (""); } lms->name = name; |