diff options
author | waker <wakeroid@gmail.com> | 2011-05-21 22:13:38 +0200 |
---|---|---|
committer | waker <wakeroid@gmail.com> | 2011-05-21 22:13:38 +0200 |
commit | ae4462a1675651d38d0de3d714846779a2bd2c90 (patch) | |
tree | e9e73f52689b9020ce1274cabad9f5b89f8fa405 /plugins/m3u | |
parent | f785d4a31d0ab246e68addb08815a571b3c9546c (diff) |
hardcoded api_version 1.0 into all plugins
Diffstat (limited to 'plugins/m3u')
-rw-r--r-- | plugins/m3u/m3u.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/m3u/m3u.c b/plugins/m3u/m3u.c index ef4c6ba9..bcf6a13c 100644 --- a/plugins/m3u/m3u.c +++ b/plugins/m3u/m3u.c @@ -443,7 +443,8 @@ m3uplug_save (ddb_playlist_t *plt, const char *fname, DB_playItem_t *first, DB_p static const char * exts[] = { "m3u", "m3u8", "pls", NULL }; DB_playlist_t plugin = { - DB_PLUGIN_SET_API_VERSION + .plugin.api_vmajor = 1, + .plugin.api_vminor = 0, .plugin.version_major = 1, .plugin.version_minor = 0, .plugin.type = DB_PLUGIN_PLAYLIST, |