diff options
author | David Schleef <ds@schleef.org> | 2003-07-25 21:31:58 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2003-07-25 21:31:58 +0000 |
commit | 4df5590ec318054389219b84153cce0ce363613b (patch) | |
tree | 03693e2bbc1e2f7f5dd4d7462f4cbbee3e14fc77 | |
parent | 9f42b5fa14b03750583a8e3ae8da3fcf181b596d (diff) | |
download | gst-plugins-bad-4df5590ec318054389219b84153cce0ce363613b.tar.gz gst-plugins-bad-4df5590ec318054389219b84153cce0ce363613b.tar.bz2 gst-plugins-bad-4df5590ec318054389219b84153cce0ce363613b.zip |
Compilation fixes for 64-bit architectures
Original commit message from CVS:
Compilation fixes for 64-bit architectures
-rw-r--r-- | examples/dynparams/filter.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/dynparams/filter.c b/examples/dynparams/filter.c index 98623480..ed0dd5aa 100644 --- a/examples/dynparams/filter.c +++ b/examples/dynparams/filter.c @@ -308,9 +308,9 @@ cb_parse_clicked (GtkButton *button, gpointer *user_data) gtk_entry_get_text (GTK_ENTRY (fd->ui->output))); /* gtkcombo.h says I can access the entry field directly */ fd->filter_element = g_strdup (gtk_entry_get_text (GTK_ENTRY (filter->entry))); - g_print ("Input pipeline :\t%s (%d)\n", fd->input_pipe, strlen (fd->input_pipe)); - g_print ("Filter element :\t%s (%d)\n", fd->filter_element, strlen (fd->filter_element)); - g_print ("Output pipeline :\t%s (%d)\n", fd->output_pipe, strlen (fd->output_pipe)); + g_print ("Input pipeline :\t%s (%d)\n", fd->input_pipe, (int)strlen (fd->input_pipe)); + g_print ("Filter element :\t%s (%d)\n", fd->filter_element, (int)strlen (fd->filter_element)); + g_print ("Output pipeline :\t%s (%d)\n", fd->output_pipe, (int)strlen (fd->output_pipe)); /* try to create in and out bins */ if (strlen (fd->input_pipe) == 0) |