mirror of
https://github.com/postgres/postgres.git
synced 2025-05-06 19:59:18 +03:00
Fix translatable string
Discussion: https://postgr.es/m/20170828130545.sdajqlpr37hmmd6a@alvherre.pgsql
This commit is contained in:
parent
a4b0a4d437
commit
bd75335a83
@ -271,6 +271,7 @@ receiveFileChunks(const char *sql)
|
||||
char *filename;
|
||||
int filenamelen;
|
||||
int64 chunkoff;
|
||||
char chunkoff_str[32];
|
||||
int chunksize;
|
||||
char *chunk;
|
||||
|
||||
@ -343,8 +344,13 @@ receiveFileChunks(const char *sql)
|
||||
continue;
|
||||
}
|
||||
|
||||
pg_log(PG_DEBUG, "received chunk for file \"%s\", offset " INT64_FORMAT ", size %d\n",
|
||||
filename, chunkoff, chunksize);
|
||||
/*
|
||||
* Separate step to keep platform-dependent format code out of
|
||||
* translatable strings.
|
||||
*/
|
||||
snprintf(chunkoff_str, sizeof(chunkoff_str), INT64_FORMAT, chunkoff);
|
||||
pg_log(PG_DEBUG, "received chunk for file \"%s\", offset %s, size %d\n",
|
||||
filename, chunkoff_str, chunksize);
|
||||
|
||||
open_target_file(filename, false);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user