~ubuntu-branches/debian/sid/gdal/sid

« back to all changes in this revision

Viewing changes to apps/gdaltindex.c

  • Committer: Package Import Robot
  • Author(s): Francesco Paolo Lovergine
  • Date: 2012-05-07 15:04:42 UTC
  • mfrom: (5.5.16 experimental)
  • Revision ID: package-import@ubuntu.com-20120507150442-2eks97loeh6rq005
Tags: 1.9.0-1
* Ready for sid, starting transition.
* All symfiles updated to latest builds.
* Added dh_numpy call in debian/rules to depend on numpy ABI.
* Policy bumped to 3.9.3, no changes required.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/******************************************************************************
2
 
 * $Id: gdaltindex.c 18344 2009-12-19 10:42:32Z rouault $
 
2
 * $Id: gdaltindex.c 19806 2010-06-06 11:56:19Z rouault $
3
3
 *
4
4
 * Project:  MapServer
5
5
 * Purpose:  Commandline App to build tile index for raster files.
32
32
#include "gdal.h"
33
33
#include "cpl_port.h"
34
34
#include "cpl_conv.h"
 
35
#include "cpl_string.h"
35
36
 
36
 
CPL_CVSID("$Id: gdaltindex.c 18344 2009-12-19 10:42:32Z rouault $");
 
37
CPL_CVSID("$Id: gdaltindex.c 19806 2010-06-06 11:56:19Z rouault $");
37
38
 
38
39
/************************************************************************/
39
40
/*                               Usage()                                */
435
436
    OGR_DS_Destroy( hTileIndexDS );
436
437
    
437
438
    GDALDestroyDriverManager();
 
439
    OGRCleanupAll();
 
440
    CSLDestroy(argv);
438
441
    
439
442
    exit( 0 );
440
443