boeffla_wl_blocker: Increase blacklist max length

The previous 255 limit seemed to be not enough to hold all the Samsung stock defined wakelocks that look safe to block

Signed-off-by: engstk <eng.stk@sapo.pt>
This commit is contained in:
Aner Torre 2020-06-17 11:33:50 +02:00 committed by Hannes Ylä-Jääski
parent f6e12fa723
commit a56ccb5315

View File

@ -18,6 +18,6 @@
#define LIST_WL_DEFAULT ""
#define LENGTH_LIST_WL 255
#define LENGTH_LIST_WL 1024
#define LENGTH_LIST_WL_DEFAULT (strlen(LIST_WL_DEFAULT) + 1)
#define LENGTH_LIST_WL_SEARCH LENGTH_LIST_WL + LENGTH_LIST_WL_DEFAULT + 5