diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-04-16 23:09:54 +0900 | 
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-04-17 09:07:03 +0900 | 
| commit | 5e4a772d84846654db19f3a10263fde6c6d9518d (patch) | |
| tree | 121229950275d2bae82dc08a72eed1059ad6305d /src | |
| parent | fd1a740fce74c3e9d0503dcb0d762f1e03fe2dbb (diff) | |
| download | kmplayer-5e4a772d84846654db19f3a10263fde6c6d9518d.tar.gz kmplayer-5e4a772d84846654db19f3a10263fde6c6d9518d.zip | |
Fix FTBFS caused by missing include. This resolves issue #19
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 311b228923a78ead3e64726d589926ff4199bff1)
Diffstat (limited to 'src')
| -rw-r--r-- | src/npplayer.c | 8 | 
1 files changed, 7 insertions, 1 deletions
| diff --git a/src/npplayer.c b/src/npplayer.c index c630622..7e4ea39 100644 --- a/src/npplayer.c +++ b/src/npplayer.c @@ -31,12 +31,14 @@ http://dbus.freedesktop.org/doc/dbus/libdbus-tutorial.html  #include <fcntl.h>  #include <glib.h> +#include <glib/gprintf.h>  #include <gdk/gdkx.h>  #include <gtk/gtk.h>  #define DBUS_API_SUBJECT_TO_CHANGE  #include <dbus/dbus.h>  #include <dbus/dbus-glib.h> +#include <dbus/dbus-glib-lowlevel.h>  #define XP_UNIX  #define MOZ_X11 @@ -119,6 +121,10 @@ static void print (const char * format, ...) {  /*----------------%<---------------------------------------------------------*/ +static gint identifierCompare (gconstpointer a, gconstpointer b) { +    return strcmp((const char*)a, (const char*)b); +} +  static gint streamCompare (gconstpointer a, gconstpointer b) {      return (long)a - (long)b;  } @@ -1527,7 +1533,7 @@ int main (int argc, char **argv) {          return 1;      } -    identifiers = g_tree_new (strcmp); +    identifiers = g_tree_new (identifierCompare);      stream_list = g_tree_new (streamCompare);      g_timeout_add (0, initPlayer, NULL); | 
