summaryrefslogtreecommitdiff
path: root/gst/gstregistry.c
diff options
context:
space:
mode:
authorRaimo Järvi <raimo.jarvi@gmail.com>2011-09-26 00:30:47 +0300
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2011-09-26 12:17:30 +0200
commit6637d983d3246634824d2dc95850dac2a15dd63e (patch)
treee49cc385c574df63061739a3a76f250e62ce30c1 /gst/gstregistry.c
parent51764c3f44a917cff89dd4df0ed4010b35c29fe3 (diff)
downloadgstreamer-6637d983d3246634824d2dc95850dac2a15dd63e.tar.gz
gst: Fix compiler warnings on 64 bit mingw-w64
Fixes bug #660083.
Diffstat (limited to 'gst/gstregistry.c')
-rw-r--r--gst/gstregistry.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gst/gstregistry.c b/gst/gstregistry.c
index 15d35462a9..56107c505b 100644
--- a/gst/gstregistry.c
+++ b/gst/gstregistry.c
@@ -1216,11 +1216,11 @@ gst_registry_scan_path_level (GstRegistryScanContext * context,
} else {
GST_INFO_OBJECT (context->registry, "cached info for %s is stale",
filename);
- GST_DEBUG_OBJECT (context->registry, "mtime %ld != %ld or size %"
- G_GINT64_FORMAT " != %" G_GINT64_FORMAT " or external dependency "
- "env_vars changed: %d or external dependencies changed: %d"
- " or old path %s != new path %s",
- plugin->file_mtime, file_status.st_mtime,
+ GST_DEBUG_OBJECT (context->registry, "mtime %" G_GINT64_FORMAT " != %"
+ G_GINT64_FORMAT " or size %" G_GINT64_FORMAT " != %"
+ G_GINT64_FORMAT " or external dependency env_vars changed: %d or"
+ " external dependencies changed: %d or old path %s != new path %s",
+ (gint64) plugin->file_mtime, (gint64) file_status.st_mtime,
(gint64) plugin->file_size, (gint64) file_status.st_size,
env_vars_changed, deps_changed, plugin->filename, filename);
gst_registry_remove_plugin (context->registry, plugin);