소스 검색

Fix some LFS issues

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@47665 15284696-431f-4ddb-bdfa-cd5b030d7da7
Glynn Clements 14 년 전
부모
커밋
0b5e2c1c33
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      raster/r.terraflow/grass2str.h

+ 2 - 2
raster/r.terraflow/grass2str.h

@@ -140,9 +140,9 @@ cell2stream(char* cellname, elevation_type T_max_value, long* nodata_count) {
   /* close map files */
   Rast_close (infd);
 
-  G_debug(3, "nrows=%d   ncols=%d    stream_len()=%d", nrows, ncols,
+  G_debug(3, "nrows=%d   ncols=%d    stream_len()=%"PRI_OFF_T, nrows, ncols,
 		str->stream_len());  
-  assert(nrows * ncols == str->stream_len());
+  assert((off_t) nrows * ncols == str->stream_len());
   rt_stop(rt);
   stats->recordTime("reading raster map", rt);