File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -482,8 +482,8 @@ void MET_verify_cache(thread_db* tdbb)
482482 routine->useCount < routine->intUseCount)
483483 {
484484 string output;
485- output.reserve(BUFFER_MEDIUM );
486- char buffer[BUFFER_MEDIUM ];
485+ output.reserve(BUFFER_LARGE );
486+ char buffer[BUFFER_LARGE ];
487487 snprintf(buffer, sizeof(buffer),
488488 "Procedure %d:%s is not properly counted (use count=%d, prc use=%d). Used by:\n",
489489 routine->getId(), routine->getName().toString().c_str(),
@@ -560,7 +560,7 @@ void MET_verify_cache(thread_db* tdbb)
560560 {
561561 string output;
562562 output.reserve(BUFFER_LARGE);
563- char buffer[BUFFER_MEDIUM ];
563+ char buffer[BUFFER_LARGE ];
564564 snprintf(buffer, sizeof(buffer),
565565 "Function %d:%s is not properly counted (use count=%d, func use=%d). Used by:\n",
566566 routine->getId(), routine->getName().toString().c_str(),
You can’t perform that action at this time.
0 commit comments