~ubuntu-branches/ubuntu/saucy/librsvg/saucy

« back to all changes in this revision

Viewing changes to tools/rsvg-tools-main.c

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2013-05-24 19:34:11 UTC
  • mfrom: (34.1.3 experimental)
  • Revision ID: package-import@ubuntu.com-20130524193411-olwciye7zzv94ygi
Tags: 2.36.4-2
* Upload to unstable.
* Drop Build-Conflicts against valac-0.16 again. With valac-0.20 now being
  the default this is no longer necessary.
* Drop explicit Build-Depends on gir1.2-glib-2.0 and gir1.2-freedesktop.
  Those are pulled in by libgirepository1.0-dev.
* Bump Standards-Version to 3.9.4. No further changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#include <stdlib.h>
31
31
 
32
32
#include "rsvg.h"
33
 
#include "rsvg-cairo.h"
34
33
#include "rsvg-private.h"
35
34
#include "rsvg-tools-main.h"
36
35
 
115
114
    g_option_context_free (g_option_context);
116
115
 
117
116
    if (bVersion != 0) {
118
 
        g_print ("test-performance version %s\n", VERSION);
 
117
        g_printerr ("test-performance version %s\n", VERSION);
119
118
        exit (EXIT_SUCCESS);
120
119
    }
121
120
 
124
123
            n_args++;
125
124
 
126
125
    if (n_args < 1) {
127
 
        g_print (_("Must specify a SVG file\n"));
 
126
        g_printerr (_("Must specify a SVG file\n"));
128
127
        exit (EXIT_FAILURE);
129
128
    }
130
129