mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-09-30 03:34:25 +03:00
debug: always use %zu in format string for size_t
This commit is contained in:
committed by
Matthew Barr
parent
0cc941dfd5
commit
3cf4199879
@@ -117,7 +117,7 @@ aligned_unique_ptr<NFA> buildTamarama(const TamaInfo &tamaInfo, const u32 queue,
|
||||
remapTops(tamaInfo, top_base, out_top_remap);
|
||||
|
||||
size_t subSize = tamaInfo.subengines.size();
|
||||
DEBUG_PRINTF("subSize:%lu\n", subSize);
|
||||
DEBUG_PRINTF("subSize:%zu\n", subSize);
|
||||
size_t total_size =
|
||||
sizeof(NFA) + // initial NFA structure
|
||||
sizeof(Tamarama) + // Tamarama structure
|
||||
|
Reference in New Issue
Block a user