~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to app/plug-in/gimpplugindebug.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2008-10-06 13:30:41 UTC
  • mto: This revision was merged to the branch mainline in revision 35.
  • Revision ID: james.westby@ubuntu.com-20081006133041-3panbkcanaymfsmp
Tags: upstream-2.6.0
ImportĀ upstreamĀ versionĀ 2.6.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
gimp_plug_in_debug_argv (GimpPlugInDebug    *debug,
110
110
                         const gchar        *name,
111
111
                         GimpDebugWrapFlag   flag,
112
 
                         gchar             **args)
 
112
                         const gchar       **args)
113
113
{
114
114
  GPtrArray  *argv;
115
115
  gchar     **arg;
134
134
  for (arg = debug->args; *arg != NULL; arg++)
135
135
    g_ptr_array_add (argv, *arg);
136
136
 
137
 
  for (arg = args; *arg != NULL; arg++)
 
137
  for (arg = (gchar **) args; *arg != NULL; arg++)
138
138
    g_ptr_array_add (argv, *arg);
139
139
 
140
140
  g_ptr_array_add (argv, NULL);