diff options
Diffstat (limited to 'gold/script-sections.cc')
-rw-r--r-- | gold/script-sections.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gold/script-sections.cc b/gold/script-sections.cc index 8183bf2..1a19ad8 100644 --- a/gold/script-sections.cc +++ b/gold/script-sections.cc @@ -2788,7 +2788,8 @@ Script_sections::add_memory_region(const char* name, size_t namelen, this->memory_regions_ = new Memory_regions(); else if (this->find_memory_region(name, namelen)) { - gold_error (_("region '%.*s' already defined"), namelen, name); + gold_error (_("region '%.*s' already defined"), static_cast<int>(namelen), + name); // FIXME: Add a GOLD extension to allow multiple regions with the same // name. This would amount to a single region covering disjoint blocks // of memory, which is useful for embedded devices. |