mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-27 01:28:46 +00:00
Silence gcc printf warnings
This commit is contained in:
@@ -381,7 +381,8 @@ convert_unicode_to_ACP (const unichar *usz)
|
||||
return NULL;
|
||||
codepage_from_unicode (&l, usz, &s, mcset_codepage_out);
|
||||
if (! s)
|
||||
fatal ("unicode string not mappable to ASCII codepage 0x%lx.\n", (long) mcset_codepage_out);
|
||||
fatal ("unicode string not mappable to ASCII codepage 0x%lx.\n",
|
||||
(unsigned long) mcset_codepage_out);
|
||||
return s;
|
||||
}
|
||||
|
||||
@@ -803,8 +804,8 @@ write_rc (FILE *fp)
|
||||
int i, l;
|
||||
|
||||
fprintf (fp,
|
||||
"/* Do not edit this file manually.\n"
|
||||
" This file is autogenerated by windmc. */\n\n");
|
||||
"/* Do not edit this file manually.\n"
|
||||
" This file is autogenerated by windmc. */\n\n");
|
||||
if (! mc_nodes_lang_count)
|
||||
return;
|
||||
n = NULL;
|
||||
@@ -816,10 +817,11 @@ write_rc (FILE *fp)
|
||||
++i;
|
||||
n = mc_nodes_lang[l];
|
||||
fprintf (fp, "\n// Country: %s\n// Language: %s\n#pragma code_page(%u)\n",
|
||||
n->lang->lang_info.country, n->lang->lang_info.name,
|
||||
(unsigned) n->lang->lang_info.wincp);
|
||||
fprintf (fp, "LANGUAGE 0x%lx, 0x%lx\n", (long) (n->lang->nval & 0x3ff),
|
||||
(long) ((n->lang->nval & 0xffff) >> 10));
|
||||
n->lang->lang_info.country, n->lang->lang_info.name,
|
||||
(unsigned) n->lang->lang_info.wincp);
|
||||
fprintf (fp, "LANGUAGE 0x%lx, 0x%lx\n",
|
||||
(unsigned long) (n->lang->nval & 0x3ff),
|
||||
(unsigned long) ((n->lang->nval & 0xffff) >> 10));
|
||||
fprintf (fp, "1 MESSAGETABLE \"");
|
||||
if (mcset_prefix_bin)
|
||||
fprintf (fp, "%s_", mcset_mc_basename);
|
||||
|
||||
Reference in New Issue
Block a user