1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Author: Andreas Beckmann <anbe@debian.org>
Description: fix building with -Werror=implicit-function-declaration
--- a/src/jukebox.c
+++ b/src/jukebox.c
@@ -27,6 +27,7 @@
#include "filenaming.h"
#include "util.h"
#include "id3read.h"
+#include "tagfile.h"
#include <glib.h>
#include <glib/gprintf.h>
--- a/src/tagfile.c
+++ b/src/tagfile.c
@@ -20,6 +20,7 @@ Boston, MA 02111-1307, USA.
#include "util.h"
#include "filesystem.h"
#include <taglib/tag_c.h>
+#include <glib/gprintf.h>
/*****************************************************************************
* EXPORTED FUNCTIONS
|