Skip to content

Commit

Permalink
Merge pull request #87 from Samdal/patch-1
Browse files Browse the repository at this point in the history
fix gs_coro_uninit
  • Loading branch information
MrFrenik authored Sep 28, 2023
2 parents cfe5d69 + c0ffeb7 commit 9ce2270
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gs.h
Original file line number Diff line number Diff line change
Expand Up @@ -4422,7 +4422,7 @@ typedef mco_result gs_coro_result;
// Functions
#define gs_coro_desc_init(DESC, V) mco_desc_init((DESC), (V))
#define gs_coro_init(CO, DESC) mco_init((CO), (DESC))
#define gs_coro_uninit(CO, DESC) mco_uninit((CO))
#define gs_coro_uninit(CO) mco_uninit((CO))
#define gs_coro_create(CO, DESC) mco_create((CO), (DESC))
#define gs_coro_destroy(CO) mco_destroy((CO))
#define gs_coro_yield(CO) mco_yield((CO))
Expand Down

0 comments on commit 9ce2270

Please sign in to comment.