summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--tests/test-fw-id.c4
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 978b6bf..acbeb06 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-07-26 Christophe Fergeau <teuf@gnome.org>
+
+ * tests/test-fw-id.c: (main): add missing call to g_type_init
+
2008-07-20 Jorg Schuler <jcsjcs at users.sourceforge.net>
* src/ithumb-writer.c (pack_RGB_565), (pack_RGB_555)
diff --git a/tests/test-fw-id.c b/tests/test-fw-id.c
index 9ec40e9..d900f13 100644
--- a/tests/test-fw-id.c
+++ b/tests/test-fw-id.c
@@ -31,6 +31,8 @@
#include <time.h>
#include <libintl.h>
+#include <glib-object.h>
+
#include "itdb.h"
#include "itdb_device.h"
@@ -45,6 +47,8 @@ main (int argc, char *argv[])
return 1;
}
+
+ g_type_init ();
device = itdb_device_new ();
if (device == NULL) {