소스 검색

Use platform independent int64 format specifier (#1405)

Addresses -Wformat compiler warning.
nilason 4 년 전
부모
커밋
b17402c8c9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      raster/r.info/main.c

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

@@ -528,7 +528,7 @@ int main(int argc, char **argv)
 		    }
 		}
 
-		fprintf(out, "n=%jd\n", rstats.count);
+		fprintf(out, "n=%" PRId64 "\n", rstats.count);
 		fprintf(out, "mean=%.15g\n", mean);
 		fprintf(out, "stddev=%.15g\n", sd);
 		fprintf(out, "sum=%.15g\n", rstats.sum);