From: DeaDDooMER Date: Wed, 8 Mar 2017 22:12:01 +0000 (+0300) Subject: Fix string constants in modules X-Git-Url: https://deadsoftware.ru/gitweb?p=mp3cc.git;a=commitdiff_plain;h=dd9edaadb2111017311b638f8174e7df2a8e3487 Fix string constants in modules --- 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); }