diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2023-03-29 08:25:12 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2023-03-29 08:25:12 +0200 |
commit | 0d15afc875f44bcb0adc244c4d9034023f99b609 (patch) | |
tree | 14cfc606b326bd81d6855cb35fa52d3ed69f7849 /src/backend/backup/backup_manifest.c | |
parent | 062a8444242404242f7c2b814fed37b329639408 (diff) | |
download | postgresql-0d15afc875f44bcb0adc244c4d9034023f99b609.tar.gz postgresql-0d15afc875f44bcb0adc244c4d9034023f99b609.zip |
Simplify useless 0L constants
In ancient times, these belonged to arguments or fields that were
actually of type long, but now they are not anymore, so this "L"
decoration is just confusing. (Some other 0L and other "L" constants
remain, where they are actually associated with a long type.)
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"))); |