From ef56e5b61ef738681cf37ca939e9817a8eacb5ff Mon Sep 17 00:00:00 2001 From: Robin Mills Date: Sat, 16 May 2020 08:38:42 +0100 Subject: [PATCH] Fix comment typo --- samples/iotest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/iotest.cpp b/samples/iotest.cpp index f0f4ed44..405e4d78 100644 --- a/samples/iotest.cpp +++ b/samples/iotest.cpp @@ -69,7 +69,7 @@ int main(int argc, char* const argv[]) if ( argc >= 5 ) { int blocksize = argc==6 ? atoi(ba) : 10000; - // ensure bs is sane + // ensure blocksize is sane if (blocksize<1) blocksize=1 ; if (blocksize>1024*1024) blocksize=10000; Exiv2::byte* bytes = new Exiv2::byte[blocksize];