kernel: fixup! su_path->su, make it as an array

Signed-off-by: rsuntk <rsuntk@yukiprjkt.my.id>
This commit is contained in:
rsuntk
2025-07-22 22:02:10 +07:00
committed by ShirkNeko
parent fc85270a35
commit da477fd588

View File

@@ -25,8 +25,8 @@
#define SU_PATH "/system/bin/su"
#define SH_PATH "/system/bin/sh"
static const char sh_path = SH_PATH;
static const char su_path = SU_PATH;
static const char sh_path[] = SH_PATH;
static const char su[] = SU_PATH;
static const char ksud_path[] = KSUD_PATH;
extern void escape_to_root();