Skip to content

Commit

Permalink
possible fix for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
boazsegev committed Nov 29, 2024
1 parent 565949e commit ece3cea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ext/iodine/extconf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
append_cflags("-Wno-undef");
append_cflags("-Wno-missing-noreturn");

create_makefile "iodine/iodine_ext"
create_makefile "iodine/iodine"
2 changes: 1 addition & 1 deletion ext/iodine/iodine.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ static void Init_Iodine(void) {
Initialize Extension
***************************************************************************** */

void Init_iodine_ext(void) {
void Init_iodine(void) {
fio_state_callback_force(FIO_CALL_ON_INITIALIZE);

IodineUTF8Encoding = rb_enc_find("UTF-8");
Expand Down
2 changes: 1 addition & 1 deletion lib/iodine.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

require_relative "iodine/version"

require "iodine/iodine_ext"
require "iodine/iodine"

# Support common ENV options for setting concurrency.

Expand Down

0 comments on commit ece3cea

Please sign in to comment.