~ubuntu-branches/ubuntu/precise/grass/precise

« back to all changes in this revision

Viewing changes to raster/r.surf.contour/dseg_put.c

  • Committer: Bazaar Package Importer
  • Author(s): Francesco Paolo Lovergine
  • Date: 2011-04-13 17:08:41 UTC
  • mfrom: (8.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20110413170841-ss1t9bic0d0uq0gz
Tags: 6.4.1-1
* New upstream version.
* Now build-dep on libjpeg-dev and current libreadline6-dev.
* Removed patch swig: obsolete.
* Policy bumped to 3.9.2, without changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <grass/gis.h>
 
2
#include "seg.h"
 
3
 
 
4
int dseg_put(DSEG * dseg, int row, int col, DCELL value)
 
5
{
 
6
    if (segment_put(&(dseg->seg), &value, row, col) < 0) {
 
7
        G_warning("dseg_put(): could not write segment file");
 
8
        return -1;
 
9
    }
 
10
    return 0;
 
11
}