浏览代码

update modules to https://trac.osgeo.org/grass/changeset/63839

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@63841 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 10 年之前
父节点
当前提交
b5ab4e0468
共有 3 个文件被更改,包括 3 次插入3 次删除
  1. 1 1
      raster/r.timestamp/main.c
  2. 1 1
      raster3d/r3.timestamp/r3.timestamp.main.c
  3. 1 1
      vector/v.timestamp/main.c

+ 1 - 1
raster/r.timestamp/main.c

@@ -68,7 +68,7 @@ int main(int argc, char *argv[])
 
     if (!modify) {
 	if (G_read_raster_timestamp(name, "", &ts) == 1) {
-	    G__write_timestamp(stdout, &ts);
+	    G_write_timestamp(stdout, &ts);
 	    exit(EXIT_SUCCESS);
 	}
 	else

+ 1 - 1
raster3d/r3.timestamp/r3.timestamp.main.c

@@ -73,7 +73,7 @@ int main(int argc, char *argv[])
 
     if (!modify) {
 	if (G_read_raster3d_timestamp(name, mapset, &ts) == 1) {
-	    G__write_timestamp(stdout, &ts);
+	    G_write_timestamp(stdout, &ts);
 	    exit(EXIT_SUCCESS);
 	}
 	else

+ 1 - 1
vector/v.timestamp/main.c

@@ -69,7 +69,7 @@ int main(int argc, char *argv[])
 
     if (!modify) {
 	if (G_read_vector_timestamp(name, layer->answer, "", &ts) == 1) {
-	    G__write_timestamp(stdout, &ts);
+	    G_write_timestamp(stdout, &ts);
 	    exit(EXIT_SUCCESS);
 	}
 	else