Skip to content

Commit 9d64ed7

Browse files
committed
Update main.c
1 parent e1e49d8 commit 9d64ed7

File tree

1 file changed

+1
-1
lines changed
  • examples/06 Bind Variadic Function

1 file changed

+1
-1
lines changed

examples/06 Bind Variadic Function/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ static bool my_print(int argc, py_Ref argv) {
2828
static bool my_print_kw_dict_apply(py_Ref key, py_Ref value, void *ctx) {
2929
const char *sep = (const char *)ctx;
3030
if (!py_str(key)) return false;
31-
printf("%s=", py_tostr(py_retval()));
31+
printf("%s", py_tostr(py_retval()));
3232
if (!py_str(value)) return false;
3333
printf("%s%s\n", sep, py_tostr(py_retval()));
3434
return true;

0 commit comments

Comments
 (0)