aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libfsimage/zfs
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-07-15 15:03:58 +0100
committerKeir Fraser <keir.fraser@citrix.com>2008-07-15 15:03:58 +0100
commitc20060b5e01dadc59f501b92e2e4ad752e625a89 (patch)
tree131f3f88f68dc9a88ce440ae1fd8f112630901c7 /tools/libfsimage/zfs
parent032a69e5b7d9e23fbd2b1c1f9b2fd60118b6a5cb (diff)
downloadxen-c20060b5e01dadc59f501b92e2e4ad752e625a89.tar.gz
xen-c20060b5e01dadc59f501b92e2e4ad752e625a89.tar.bz2
xen-c20060b5e01dadc59f501b92e2e4ad752e625a89.zip
tools: Make functions static which should not be exported.
Signed-off-by: Christoph Egger <Christoph.Egger@amd.com>
Diffstat (limited to 'tools/libfsimage/zfs')
-rw-r--r--tools/libfsimage/zfs/fsys_zfs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/libfsimage/zfs/fsys_zfs.c b/tools/libfsimage/zfs/fsys_zfs.c
index d6f9880bab..1409e3cde6 100644
--- a/tools/libfsimage/zfs/fsys_zfs.c
+++ b/tools/libfsimage/zfs/fsys_zfs.c
@@ -1199,7 +1199,7 @@ check_pool_label(fsi_file_t *ffi, int label, char *stack)
* 1 - success
* 0 - failure
*/
-int
+static int
zfs_mount(fsi_file_t *ffi, const char *options)
{
char *stack;
@@ -1284,7 +1284,7 @@ zfs_mount(fsi_file_t *ffi, const char *options)
* 1 - success
* 0 - failure
*/
-int
+static int
zfs_open(fsi_file_t *ffi, char *filename)
{
char *stack;
@@ -1377,7 +1377,7 @@ zfs_open(fsi_file_t *ffi, char *filename)
* len - the length successfully read in to the buffer
* 0 - failure
*/
-int
+static int
zfs_read(fsi_file_t *ffi, char *buf, int len)
{
char *stack;