diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index 5348f5c..74697bf 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -1,10 +1,6 @@ name: Makefile CI on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] jobs: build: diff --git a/src/colors.c b/src/colors.c index 99f8611..ecb6830 100644 --- a/src/colors.c +++ b/src/colors.c @@ -19,8 +19,8 @@ void laser_colors_set(const char *key, const char *value) } // macro stuff be 🔥 -#define _X(name, vaule) \ - LASER_COLORS[LASER_COLOR_##name].key = strdup(#name); \ +#define _X(name, vaule) \ + LASER_COLORS[LASER_COLOR_##name].key = strdup(#name); \ LASER_COLORS[LASER_COLOR_##name].value = strdup(vaule); void laser_colors_init(void) diff --git a/src/main.c b/src/main.c index 987305f..d988f3d 100644 --- a/src/main.c +++ b/src/main.c @@ -77,7 +77,7 @@ int main(int argc, char **argv) if (script_to_load != default_script) lua_load_script(script_to_load); - lua_load_script(default_script); // load the default script cuz user may + lua_load_script(default_script); // load the default script cuz user may // not be defining everything laser_colors_init();