diff options
Diffstat (limited to 'src/backend/backup/backup_manifest.c')
-rw-r--r-- | src/backend/backup/backup_manifest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/backup/backup_manifest.c b/src/backend/backup/backup_manifest.c index fabd2ca2992..cee62165246 100644 --- a/src/backend/backup/backup_manifest.c +++ b/src/backend/backup/backup_manifest.c @@ -349,7 +349,7 @@ SendBackupManifest(backup_manifest_info *manifest, bbsink *sink) * We've written all the data to the manifest file. Rewind the file so * that we can read it all back. */ - if (BufFileSeek(manifest->buffile, 0, 0L, SEEK_SET)) + if (BufFileSeek(manifest->buffile, 0, 0, SEEK_SET)) ereport(ERROR, (errcode_for_file_access(), errmsg("could not rewind temporary file"))); |