Skip to content

Commit

Permalink
Reduce printf buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
mobizt committed Jun 8, 2024
1 parent 264aab4 commit 1be6886
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FirebaseClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ namespace firebase

void printf(const char *format, ...)
{
int size = 2048;
int size = 512;
char s[size];
va_list va;
va_start(va, format);
Expand Down

0 comments on commit 1be6886

Please sign in to comment.