fix: wrong longest root implementation name macro value

This commit fixes the value of the macro that defines the size of the longest root implementation name, leading to Zygiskd crashes on Magisk Official.
This commit is contained in:
ThePedroo
2024-11-08 17:21:54 -03:00
parent a6124a6a5e
commit 8892eca4a7

View File

@@ -23,7 +23,7 @@ struct root_impl {
uint8_t variant; uint8_t variant;
}; };
#define LONGEST_ROOT_IMPL_NAME sizeof("Magisk Kitsune") #define LONGEST_ROOT_IMPL_NAME sizeof("Magisk Official")
void root_impls_setup(void); void root_impls_setup(void);