~bratsche/ubuntu/maverick/gtk+2.0/menu-activation-fix

« back to all changes in this revision

Viewing changes to gdk-pixbuf/queryloaders.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2009-09-05 07:16:24 UTC
  • mfrom: (1.3.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 127.
  • Revision ID: james.westby@ubuntu.com-20090905071624-ehjbg50t3hvthzlm
Tags: upstream-2.17.11
Import upstream version 2.17.11

Show diffs side-by-side

added added

removed removed

Lines of Context:
119
119
        return 0;
120
120
}
121
121
 
122
 
static void 
 
122
static void
123
123
write_loader_info (const char *path, GdkPixbufFormat *info)
124
124
{
125
125
        const GdkPixbufModulePattern *pattern;
126
 
        char **mime; 
127
 
        char **ext; 
 
126
        char **mime;
 
127
        char **ext;
128
128
 
129
129
        g_printf("\"%s\"\n", path);
130
 
        g_printf ("\"%s\" %u \"%s\" \"%s\" \"%s\"\n", 
131
 
                  info->name, info->flags, 
132
 
                  info->domain ? info->domain : GETTEXT_PACKAGE, info->description, info->license);
 
130
        g_printf ("\"%s\" %u \"%s\" \"%s\" \"%s\"\n",
 
131
                  info->name,
 
132
                  info->flags,
 
133
                  info->domain ? info->domain : GETTEXT_PACKAGE,
 
134
                  info->description,
 
135
                  info->license ? info->license : "");
133
136
        for (mime = info->mime_types; *mime; mime++) {
134
137
                g_printf ("\"%s\" ", *mime);
135
138
        }