aboutsummaryrefslogtreecommitdiff
path: root/src/checker/type.cpp
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2016-09-07 19:23:00 +0100
committerGinger Bill <bill@gingerbill.org>2016-09-07 19:23:00 +0100
commit7ba13a18a33d8f852eb41b58da662ddb4649d04f (patch)
tree89663aff3ad0c5e5f62a3432d269dcee050a71ed /src/checker/type.cpp
parent2c4193a24226b084797af61e29c8355835c179a8 (diff)
Basic variadic `print` procedure
Diffstat (limited to 'src/checker/type.cpp')
-rw-r--r--src/checker/type.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/checker/type.cpp b/src/checker/type.cpp
index 2ef56111c..8db89a38c 100644
--- a/src/checker/type.cpp
+++ b/src/checker/type.cpp
@@ -722,7 +722,7 @@ Selection lookup_field(Type *type_, String field_name, b32 is_type, Selection se
if (type->kind == Type_Basic) {
if (type->Basic.kind == Basic_any) {
String type_info_str = make_string("type_info");
- String data_str = make_string("data_str");
+ String data_str = make_string("data");
if (entity_any_type_info == NULL) {
Token token = {Token_Identifier};
token.string = type_info_str;