mirror of
https://github.com/postgres/postgres.git
synced 2025-08-21 10:42:50 +03:00
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.)
This commit is contained in:
@@ -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")));
|
||||
|
Reference in New Issue
Block a user