Fix clang warnings.
Approved by: philip (mentor)
This commit is contained in:
parent
437ee49691
commit
cd538f65b0
@ -787,7 +787,7 @@ calc_wider_mode (void)
|
||||
|
||||
#define tagged_printf(FMT, ARG, TAG) do { \
|
||||
int count_; \
|
||||
printf (" " FMT ",%n", ARG, &count_); \
|
||||
count_ = printf (" " FMT ",", ARG); \
|
||||
printf ("%*s/* %s */\n", 27 - count_, "", TAG); \
|
||||
} while (0)
|
||||
|
||||
@ -822,7 +822,7 @@ enum machine_mode\n{");
|
||||
for (m = modes[c]; m; m = m->next)
|
||||
{
|
||||
int count_;
|
||||
printf (" %smode,%n", m->name, &count_);
|
||||
count_ = printf (" %smode,", m->name);
|
||||
printf ("%*s/* %s:%d */\n", 27 - count_, "",
|
||||
trim_filename (m->file), m->line);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user