From dd9edaadb2111017311b638f8174e7df2a8e3487 Mon Sep 17 00:00:00 2001 From: DeaDDooMER Date: Thu, 9 Mar 2017 01:12:01 +0300 Subject: [PATCH] Fix string constants in modules --- mpc/structures/identifier.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mpc/structures/identifier.c b/mpc/structures/identifier.c index 6485b35..58dac04 100644 --- a/mpc/structures/identifier.c +++ b/mpc/structures/identifier.c @@ -362,7 +362,7 @@ void bsf_write_function(string* name, type_list* parameters, type* return_type) void bsf_write_STRING(char* value) { char len = strlen(value); - lowercase(value); +// lowercase(value); fwrite(&len, 1, 1, symbols_file); fwrite(value, 1, len, symbols_file); } -- 2.29.2