~ubuntu-branches/ubuntu/maverick/glib2.0/maverick

« back to all changes in this revision

Viewing changes to glib/tests/shell.c

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2010-08-31 16:46:27 UTC
  • mfrom: (1.56.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100831164627-a45i5gp3t2arze63
Tags: 2.25.15-0ubuntu1
* New upstream release
* debian/libglib2.0-0.symbols:
  - Updated symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
};
69
69
 
70
70
static gboolean
71
 
strv_equal (const gchar **a, const gchar **b)
 
71
strv_equal (gchar **a, gchar **b)
72
72
{
73
73
  gint i;
74
74
 
75
 
  if (g_strv_length ((gchar**)a) != g_strv_length ((gchar **)b))
 
75
  if (g_strv_length (a) != g_strv_length (b))
76
76
    return FALSE;
77
77
 
78
78
  for (i = 0; a[i]; i++)