diff options
Diffstat (limited to 'src/tools/imgtool/imghd.cpp')
-rw-r--r-- | src/tools/imgtool/imghd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/imgtool/imghd.cpp b/src/tools/imgtool/imghd.cpp index 623b4e4c525..af55a235e61 100644 --- a/src/tools/imgtool/imghd.cpp +++ b/src/tools/imgtool/imghd.cpp @@ -99,7 +99,7 @@ imgtoolerr_t imghd_create(imgtool::stream &stream, UINT32 hunksize, UINT32 cylin } /* alloc and zero buffer */ - dynamic_buffer cache; + std::vector<UINT8> cache; cache.resize(hunksize); memset(&cache[0], 0, hunksize); |