Skip to content

Commit

Permalink
hashbrown: fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
and3rson committed Mar 9, 2024
1 parent fea4eea commit d23cd7a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion firmware/hashbrown/src/apps/lua/lualilka_gpio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ static const struct luaL_Reg lualilka_gpio[] = {
{"write", lualilka_gpio_write},
{"read", lualilka_gpio_read},
{"analog_read", lualilka_gpio_analogRead},
{NULL, NULL}};
{NULL, NULL},
};

int lualilka_gpio_register(lua_State *L) {
luaL_newlib(L, lualilka_gpio);
Expand Down

0 comments on commit d23cd7a

Please sign in to comment.