diff options
author | jaortega <jaortega> | 2000-11-07 22:41:30 +0000 |
---|---|---|
committer | jaortega <jaortega> | 2000-11-07 22:41:30 +0000 |
commit | 69bc76235e59ac61e29f21cfcc941498c3391cf9 (patch) | |
tree | 4a08fda86aa9c8d8ffe4fac9c2faf08ea3952383 | |
parent | 19ff8d01066f592e66d4c062eb809c8a98f8145b (diff) | |
download | mdk-69bc76235e59ac61e29f21cfcc941498c3391cf9.tar.gz mdk-69bc76235e59ac61e29f21cfcc941498c3391cf9.tar.bz2 |
fixed bug with SYM EQU VAL (pking)
-rw-r--r-- | mixlib/mix_parser.c | 6 |
1 files changed, 2 insertions, 4 deletions
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) ) { |