Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vkext/vkext-rpc-tl-serialization.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ int get_full_tree_type_name(char *dst, struct tl_tree_type *tree, const char *co
} else if (cur_type->name == TL_LONG || !strcmp(cur_type->id, "#")) {
dst += make_tl_class_name(dst, "", "int", "", '\0');
} else if (!strcmp(cur_type->id, "Bool")) {
dst += make_tl_class_name(dst, "", "bool", "", '\0');
dst += make_tl_class_name(dst, "", "boolean", "", '\0');
} else {
php_error_docref(NULL, E_ERROR,
"Unexpected type %s during creating instance", cur_type->id);
Expand Down
Loading