1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-02-13 13:59:28 +02:00

Move linkCreate interface function to alphabetical order.

This commit is contained in:
David Steele 2024-12-23 10:30:41 -05:00
parent 48ecbe422d
commit 8b9e03d618

View File

@ -449,6 +449,7 @@ storageRemoteRemove(THIS_VOID, const String *const file, const StorageInterfaceR
static const StorageInterface storageInterfaceRemote =
{
.info = storageRemoteInfo,
.linkCreate = storageRemoteLinkCreate,
.list = storageRemoteList,
.newRead = storageRemoteNewRead,
.newWrite = storageRemoteNewWrite,
@ -456,7 +457,6 @@ static const StorageInterface storageInterfaceRemote =
.pathRemove = storageRemotePathRemove,
.pathSync = storageRemotePathSync,
.remove = storageRemoteRemove,
.linkCreate = storageRemoteLinkCreate,
};
FN_EXTERN Storage *