# HG changeset patch # User Paul Boddie # Date 1712433166 -7200 # Node ID 64bfc809fc4cd0e394f4b289c6a43ee7f7b2e6d7 # Parent 3047b11cc814b7d77c772af3552a11189b8909d1 Made various definitions static. diff -r 3047b11cc814 -r 64bfc809fc4c libfsclient/lib/src/client.cc --- a/libfsclient/lib/src/client.cc Sat Apr 06 21:52:27 2024 +0200 +++ b/libfsclient/lib/src/client.cc Sat Apr 06 21:52:46 2024 +0200 @@ -35,11 +35,11 @@ /* Default size of pipe regions. */ -const offset_t DEFAULT_PIPE_SIZE = 4096; +static const offset_t DEFAULT_PIPE_SIZE = 4096; /* Size of the core member region of a directory entry structure. */ -const offset_t DIRENT_CORE_SIZE = (sizeof(struct dirent) - sizeof(((struct dirent *) 0)->d_name)); +static const offset_t DIRENT_CORE_SIZE = (sizeof(struct dirent) - sizeof(((struct dirent *) 0)->d_name));