aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNay <dnpd.dd@gmail.com>2012-07-23 16:36:18 +0100
committerNay <dnpd.dd@gmail.com>2012-07-23 16:36:18 +0100
commit370c982cc044dd970682a5fdd251d05b79fdb0c3 (patch)
treec3ec654c4f10dc4c80fc0cc0bb45f2701f61ca73 /src
parentbe3735275f3c9d958badf66a38f55a582237d596 (diff)
Tools/Map extractor: Use a standard format specifier when printing loaded area counts (like the map and liqtypes count)
Diffstat (limited to 'src')
-rw-r--r--src/tools/map_extractor/System.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/map_extractor/System.cpp b/src/tools/map_extractor/System.cpp
index 076c5c126e2..c498026e401 100644
--- a/src/tools/map_extractor/System.cpp
+++ b/src/tools/map_extractor/System.cpp
@@ -294,7 +294,7 @@ void ReadAreaTableDBC()
areas[dbc.getRecord(x).getUInt(0)] = dbc.getRecord(x).getUInt(3);
SFileCloseFile(dbcFile);
- printf("Done! (%zu areas loaded)\n", area_count);
+ printf("Done! (%u areas loaded)\n", area_count);
}
void ReadLiquidTypeTableDBC()