main/astfd: Fix GCC8 format-truncation warning.

The field used to store call arguments was not large enough to hold the
arguments string that can be constructed for 'open'.  Expand it to
prevent this warning/error.

Change-Id: I514927f256481bc84df10a51b19d5b5fb1bc387e
This commit is contained in:
Corey Farrell 2018-10-12 13:21:24 -04:00
parent 31fed39078
commit a5023d4f75
No known key found for this signature in database
GPG Key ID: D1B6E98EB07F7F6C
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ static struct fdleaks {
unsigned int isopen:1;
char file[40];
char function[25];
char callargs[60];
char callargs[100];
struct timeval now;
} fdleaks[1024] = { { "", }, };