aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-11-16 15:25:01 -0600
committerTed Gould <ted@canonical.com>2009-11-16 15:25:01 -0600
commit52fd9ea3c202d886da909c9cb95e6efa50058913 (patch)
treead6d0a830171a96c3ee580d59bccddc0e91ac792
parenta87ce2822933f558f8e77ec3d32d226f16a62c86 (diff)
parenta7b77875edb12a6ef46e58b6f26324d25c10b7cd (diff)
downloadlibayatana-indicator-52fd9ea3c202d886da909c9cb95e6efa50058913.tar.gz
libayatana-indicator-52fd9ea3c202d886da909c9cb95e6efa50058913.tar.bz2
libayatana-indicator-52fd9ea3c202d886da909c9cb95e6efa50058913.zip
64-bit fix for printf's
-rw-r--r--debian/changelog6
-rw-r--r--libindicator/indicator-object.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 32fc922..e757973 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libindicator (0.3.0~dev-0ubuntu1~ppa4) UNRELEASED; urgency=low
+
+ * 64-bit fix for printf's
+
+ -- Ted Gould <ted@ubuntu.com> Mon, 16 Nov 2009 15:24:41 -0600
+
libindicator (0.3.0~dev-0ubuntu1~ppa3) karmic; urgency=low
* debian/control: Adding build deps dbus-glib as well.
diff --git a/libindicator/indicator-object.c b/libindicator/indicator-object.c
index a492038..e87fa5f 100644
--- a/libindicator/indicator-object.c
+++ b/libindicator/indicator-object.c
@@ -249,11 +249,11 @@ indicator_object_new_from_file (const gchar * file)
error'd state. */
object = g_object_new(lget_type(), NULL);
if (object == NULL) {
- g_warning("Unable to build an object if type '%d' in module: %s", lget_type(), file);
+ g_warning("Unable to build an object if type '%d' in module: %s", (gint)lget_type(), file);
goto unrefandout;
}
if (!INDICATOR_IS_OBJECT(object)) {
- g_warning("Type '%d' in file %s is not a subclass of IndicatorObject.", lget_type(), file);
+ g_warning("Type '%d' in file %s is not a subclass of IndicatorObject.", (gint)lget_type(), file);
goto unrefandout;
}