From 69bc76235e59ac61e29f21cfcc941498c3391cf9 Mon Sep 17 00:00:00 2001 From: jaortega Date: Tue, 7 Nov 2000 22:41:30 +0000 Subject: fixed bug with SYM EQU VAL (pking) --- mixlib/mix_parser.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'mixlib') diff --git a/mixlib/mix_parser.c b/mixlib/mix_parser.c index 36d5b3a..fc80a76 100644 --- a/mixlib/mix_parser.c +++ b/mixlib/mix_parser.c @@ -186,8 +186,8 @@ undef_warning_ (gpointer symbol, gpointer value, gpointer data) mix_parser_log_error ((mix_parser_t *)data, MIX_PERR_UNDEF_SYM, 1, (const gchar *)symbol, TRUE); /* move the symbol to the symbol table */ - mix_symbol_table_insert_static (((mix_parser_t *)data)->symbol_table, symbol, - MIX_WORD_ZERO); + mix_symbol_table_insert_static (((mix_parser_t *)data)->symbol_table, + symbol, MIX_WORD_ZERO); return TRUE; } @@ -199,8 +199,6 @@ update_future_refs_value_ (mix_parser_t *parser, const gchar *name, gpointer key; g_assert (parser != NULL && name != NULL); - printf ("Updating future %s\n", name); - if ( g_hash_table_lookup_extended (parser->future_refs, name, &key, (gpointer *)&list) ) { -- cgit v1.2.3