From 5e4b62acfe658606f140fc5516958df9e30e471b Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sun, 28 Jan 2018 15:59:37 +0000 Subject: [PATCH] Fix literal --- core/fmt.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/fmt.odin b/core/fmt.odin index c38073741..3d6ce70ee 100644 --- a/core/fmt.odin +++ b/core/fmt.odin @@ -175,7 +175,7 @@ write_type :: proc(buf: ^String_Buffer, ti: ^Type_Info) { write_byte(buf, 'f'); write_i64(buf, i64(8*ti.size), 10); case Type_Info_Complex: - write_string(buf, 'complex'); + write_string(buf, "complex"); write_i64(buf, i64(8*ti.size), 10); case Type_Info_String: write_string(buf, "string");