aboutsummaryrefslogtreecommitdiff
path: root/src/datastore/plugin_datastore_template.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/datastore/plugin_datastore_template.c')
-rw-r--r--src/datastore/plugin_datastore_template.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/datastore/plugin_datastore_template.c b/src/datastore/plugin_datastore_template.c
index 5e577b1bc..cf4b2ec99 100644
--- a/src/datastore/plugin_datastore_template.c
+++ b/src/datastore/plugin_datastore_template.c
@@ -47,11 +47,13 @@ struct Plugin
47 * @param cls our "struct Plugin*" 47 * @param cls our "struct Plugin*"
48 * @return number of bytes used on disk 48 * @return number of bytes used on disk
49 */ 49 */
50static unsigned long long 50static void
51template_plugin_estimate_size (void *cls) 51template_plugin_estimate_size (void *cls, unsigned long long *estimate)
52{ 52{
53 if (NULL == estimate)
54 return;
53 GNUNET_break (0); 55 GNUNET_break (0);
54 return 0; 56 *estimate = 0;
55} 57}
56 58
57 59