mirror of
https://gcc.gnu.org/git/gcc.git
synced 2026-02-21 19:35:28 -05:00
a68: fix error format string in Archive_file::initilize_big_archive
Signed-off-by: Jose E. Marchesi <jemarch@gnu.org> gcc/algol68/ChangeLog * a68-imports-archive.cc (Archive_file::initialize_big_archive): Fix formatting tag in call to a68_error.
This commit is contained in:
@@ -301,7 +301,7 @@ Archive_file::initialize_big_archive()
|
||||
memcpy(buf, flhdr.fl_fstmoff, sizeof(flhdr.fl_fstmoff));
|
||||
a68_error (NO_NODE,
|
||||
("%s: malformed first member offset in archive header"
|
||||
" (expected decimal, got Z)"),
|
||||
" (expected decimal, got %qs)"),
|
||||
this->filename_.c_str(), buf);
|
||||
delete[] buf;
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user