Procházet zdrojové kódy

Add missing % characters to format string

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@44381 15284696-431f-4ddb-bdfa-cd5b030d7da7
Glynn Clements před 14 roky
rodič
revize
01df0b0ba9
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      raster/r.in.bin/main.c

+ 1 - 1
raster/r.in.bin/main.c

@@ -486,7 +486,7 @@ int main(int argc, char *argv[])
 	expected += 892;
 
     if (file_size != expected) {
-	G_warning(_("File Size "PRI_OFF_T" ... Total Bytes "PRI_OFF_T),
+	G_warning(_("File Size %"PRI_OFF_T" ... Total Bytes %"PRI_OFF_T),
 		  file_size, expected);
 	G_fatal_error(_("Bytes do not match file size"));
     }