mirror of
https://github.com/postgres/postgres.git
synced 2026-03-03 05:40:43 -05:00
Silence compiler warnings
This commit is contained in:
parent
9ee4d06f3f
commit
8ef6961685
1 changed files with 3 additions and 3 deletions
|
|
@ -435,7 +435,7 @@ progress_report(int tablespacenum, const char *filename)
|
|||
ngettext("%*s/%s kB (100%%), %d/%d tablespace %*s",
|
||||
"%*s/%s kB (100%%), %d/%d tablespaces %*s",
|
||||
tablespacecount),
|
||||
strlen(totalsize_str),
|
||||
(int) strlen(totalsize_str),
|
||||
totaldone_str, totalsize_str,
|
||||
tablespacenum, tablespacecount,
|
||||
VERBOSE_FILENAME_LENGTH + 5, "");
|
||||
|
|
@ -447,7 +447,7 @@ progress_report(int tablespacenum, const char *filename)
|
|||
ngettext("%*s/%s kB (%d%%), %d/%d tablespace (%s%-*.*s)",
|
||||
"%*s/%s kB (%d%%), %d/%d tablespaces (%s%-*.*s)",
|
||||
tablespacecount),
|
||||
strlen(totalsize_str),
|
||||
(int) strlen(totalsize_str),
|
||||
totaldone_str, totalsize_str, percent,
|
||||
tablespacenum, tablespacecount,
|
||||
/* Prefix with "..." if we do leading truncation */
|
||||
|
|
@ -463,7 +463,7 @@ progress_report(int tablespacenum, const char *filename)
|
|||
ngettext("%*s/%s kB (%d%%), %d/%d tablespace",
|
||||
"%*s/%s kB (%d%%), %d/%d tablespaces",
|
||||
tablespacecount),
|
||||
strlen(totalsize_str),
|
||||
(int) strlen(totalsize_str),
|
||||
totaldone_str, totalsize_str, percent,
|
||||
tablespacenum, tablespacecount);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue