We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ad0524 commit d032af7Copy full SHA for d032af7
src/fwrite.c
@@ -861,7 +861,7 @@ void fwriteMain(fwriteMainArgs args)
861
#ifndef NOZLIB
862
z_stream *thread_streams = (z_stream *)malloc(nth * sizeof(z_stream));
863
if (!thread_streams)
864
- STOP(_("Failed to allocated %d bytes for '%s'."), (int)(nth * sizeof(z_stream)), "thread_streams"); // # nocov
+ STOP(_("Failed to allocate %d bytes for '%s'."), (int)(nth * sizeof(z_stream)), "thread_streams"); // # nocov
865
// VLA on stack should be fine for nth structs; in zlib v1.2.11 sizeof(struct)==112 on 64bit
866
// not declared inside the parallel region because solaris appears to move the struct in
867
// memory when the #pragma omp for is entered, which causes zlib's internal self reference
0 commit comments