~ubuntu-branches/ubuntu/trusty/vips/trusty

« back to all changes in this revision

Viewing changes to libvips/deprecated/im_ppm2vips.c

  • Committer: Package Import Robot
  • Author(s): Jay Berkenbilt
  • Date: 2014-03-29 12:29:29 UTC
  • mfrom: (1.1.21) (30.1.16 sid)
  • Revision ID: package-import@ubuntu.com-20140329122929-fvxnaann32ex0gzk
Tags: 7.38.5-2
Enable dh-autoreconf. (Closes: #742872)

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
static VipsFormatFlags
64
64
ppm_flags( const char *filename )
65
65
{
66
 
        return( vips_foreign_flags( "ppmload", filename ) );
 
66
        return( (VipsFormatFlags)
 
67
                vips_foreign_flags( "ppmload", filename ) );
67
68
}
68
69
 
69
70
static const char *ppm_suffs[] = { ".ppm", ".pgm", ".pbm", ".pfm", NULL };