From d0df76012d63084941b13147769cb47db0b32d40 Mon Sep 17 00:00:00 2001 From: Sears Russell Date: Fri, 3 Dec 2010 00:28:38 +0000 Subject: [PATCH] add missing static modifier --- src/stasis/io/pfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stasis/io/pfile.c b/src/stasis/io/pfile.c index 9b6dbb6..d0af97b 100644 --- a/src/stasis/io/pfile.c +++ b/src/stasis/io/pfile.c @@ -454,7 +454,7 @@ static int pfile_truncate_start(stasis_handle_t *h, lsn_t new_start) { return 0; } -struct stasis_handle_t pfile_func = { +static struct stasis_handle_t pfile_func = { .num_copies = pfile_num_copies, .num_copies_buffer = pfile_num_copies_buffer, .close = pfile_close,