Update inner macro

This commit is contained in:
Aoran Zeng
2024-09-29 11:50:11 +08:00
parent ffaee0b0c3
commit 2a52c898d6
64 changed files with 98 additions and 98 deletions

View File

@@ -26,7 +26,7 @@ pl_nodejs_bun_getsrc (char *option)
void
pl_nodejs_bun_setsrc (char *option)
{
char *chsrc_type = xy_streql (option, ChsrcTypeReset) ? ChsrcTypeReset : ChsrcTypeManual;
char *chsrc_type = xy_streql (option, SetsrcType_Reset) ? SetsrcType_Reset : SetsrcType_Manual;
chsrc_yield_source (pl_nodejs);
char *file = xy_strjoin(3, "[install]\n"
@@ -45,7 +45,7 @@ pl_nodejs_bun_setsrc (char *option)
void
pl_nodejs_bun_resetsrc (char *option)
{
pl_nodejs_bun_setsrc (ChsrcTypeReset);
pl_nodejs_bun_setsrc (SetsrcType_Reset);
}