Skip to content

Commit

Permalink
Update codegen/valagasyncmodule.vala
Browse files Browse the repository at this point in the history
Co-authored-by: Ole André Vadla Ravnås <oleavr@gmail.com>
  • Loading branch information
hsorbo and oleavr authored Sep 12, 2024
1 parent 3596ba0 commit 1203c4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codegen/valagasyncmodule.vala
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ public class Vala.GAsyncModule : GtkModule {

var set_name = new CCodeFunctionCall (new CCodeIdentifier ("g_task_set_name"));
set_name.add_argument (new CCodeMemberAccess.pointer (data_var, "_async_result"));
set_name.add_argument (new CCodeConstant("\"%s\"".printf (full_method_name.str)));
set_name.add_argument (new CCodeConstant.string (full_method_name.str));
ccode.add_expression (set_name);

var attach_data_call = new CCodeFunctionCall (new CCodeIdentifier ("g_task_set_task_data"));
Expand Down

0 comments on commit 1203c4a

Please sign in to comment.