mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-23 20:33:05 +00:00
Only g++ is this retarded
This commit is contained in:
parent
f19d32b29b
commit
25e86c04eb
2 changed files with 2 additions and 2 deletions
2
parser.c
2
parser.c
|
@ -1590,7 +1590,7 @@ static bool parse_sya_operand(parser_t *parser, shunt *sy, bool with_labels)
|
|||
*/
|
||||
if (!var) {
|
||||
if ((var = intrin_func(parser->intrin, parser_tokval(parser)))) {
|
||||
(void)!!compile_warning(
|
||||
(void)!!!compile_warning(
|
||||
parser_ctx(parser),
|
||||
WARN_BUILTINS,
|
||||
"using implicitly defined builtin `__builtin_%s' for `%s'",
|
||||
|
|
2
stat.c
2
stat.c
|
@ -685,7 +685,7 @@ void util_htdel(hash_table_t *ht) {
|
|||
* information.
|
||||
*/
|
||||
static void stat_dump_mem_contents(stat_mem_block_t *block, uint16_t cols) {
|
||||
unsigned char *buffer = mem_a(cols);
|
||||
unsigned char *buffer = (unsigned char *)mem_a(cols);
|
||||
unsigned char *memory = (unsigned char *)(block + 1);
|
||||
size_t i;
|
||||
|
||||
|
|
Loading…
Reference in a new issue