diff options
author | Paul Smith <psmith@gnu.org> | 2009-06-09 15:35:38 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2009-06-09 15:35:38 +0000 |
commit | d4ee0012925815e069dd9996241703a7e9bd0338 (patch) | |
tree | 0f43c9f155b5889d925b447b6b2ad2edf4695bc7 /arscan.c | |
parent | a72bff7cb3090051e75b631694aeb2bdb863aeb5 (diff) | |
download | gunmake-d4ee0012925815e069dd9996241703a7e9bd0338.tar.gz |
- Fix Savannah bug #18124
- Fix Savannah bug #17521
- Fix Savannah bug #16401
- Fix Savannah bug #16469
- Fix Savannah bug #16473
Diffstat (limited to 'arscan.c')
-rw-r--r-- | arscan.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -66,7 +66,7 @@ VMS_get_member_info (struct dsc$descriptor_s *module, unsigned long *rfa) &bufdesc.dsc$w_length, 0); if (! (status & 1)) { - error (NILF, _("lbr$set_module failed to extract module info, status = %d"), + error (NILF, _("lbr$set_module() failed to extract module info, status = %d"), status); lbr$close (&VMS_lib_idx); @@ -151,7 +151,7 @@ ar_scan (const char *archive, ar_member_func_t function, const void *arg) if (! (status & 1)) { - error (NILF, _("lbr$ini_control failed with status = %d"),status); + error (NILF, _("lbr$ini_control() failed with status = %d"), status); return -2; } |