Bug 1628132 - P1: Enlarge the buffer for cubeb logging. r=padenot

Differential Revision: https://phabricator.services.mozilla.com/D70125

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Chun-Min Chang 2020-04-14 00:23:09 +00:00
parent 82cea19dee
commit 0e5620f437

View File

@ -71,7 +71,7 @@ namespace {
LazyLogModule gCubebLog("cubeb");
void CubebLogCallback(const char* aFmt, ...) {
char buffer[256];
char buffer[1024];
va_list arglist;
va_start(arglist, aFmt);