summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugin.c2
-rw-r--r--apps/plugin.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index e916918f23..cb6990384c 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -832,7 +832,9 @@ static const struct plugin_api rockbox_api = {
832 832
833 /* new stuff at the end, sort into place next time 833 /* new stuff at the end, sort into place next time
834 the API gets incompatible */ 834 the API gets incompatible */
835#ifdef HAVE_TAGCACHE
835 tagcache_commit_finalize, 836 tagcache_commit_finalize,
837#endif
836}; 838};
837 839
838static int plugin_buffer_handle; 840static int plugin_buffer_handle;
diff --git a/apps/plugin.h b/apps/plugin.h
index 4f9027987f..a85af47826 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -969,7 +969,9 @@ struct plugin_api {
969#endif 969#endif
970 /* new stuff at the end, sort into place next time 970 /* new stuff at the end, sort into place next time
971 the API gets incompatible */ 971 the API gets incompatible */
972#ifdef HAVE_TAGCACHE
972 void (*tagcache_commit_finalize)(void); 973 void (*tagcache_commit_finalize)(void);
974#endif
973}; 975};
974 976
975/* plugin header */ 977/* plugin header */