hey, just tryin to clear up some stragglin errors:
gcc -c -O -g3 -Wall -DREQUESTS -DSMAUG14 -DTIMEFORMAT -DREGEX tables.c
tables.c: In function `spell_function':
tables.c:74: warning: cast to pointer from integer of different size
tables.c: In function `skill_function':
tables.c:91: warning: cast to pointer from integer of different size
tables.c: In function `spell_name':
tables.c:105: warning: cast to pointer from integer of different size
tables.c: In function `skill_name':
tables.c:122: warning: cast to pointer from integer of different size
they are all pointing to the following line(s), all the same thing
this is a bfd section of code, i've always had this warning as far back as i can remember, so its nothing changed recently for those who like to ask that question constantly.
gcc -c -O -g3 -Wall -DREQUESTS -DSMAUG14 -DTIMEFORMAT -DREGEX tables.c
tables.c: In function `spell_function':
tables.c:74: warning: cast to pointer from integer of different size
tables.c: In function `skill_function':
tables.c:91: warning: cast to pointer from integer of different size
tables.c: In function `spell_name':
tables.c:105: warning: cast to pointer from integer of different size
tables.c: In function `skill_name':
tables.c:122: warning: cast to pointer from integer of different size
they are all pointing to the following line(s), all the same thing
return (SPELL_FUN *) (fun_syms->value + fun_syms->section->vma);
this is a bfd section of code, i've always had this warning as far back as i can remember, so its nothing changed recently for those who like to ask that question constantly.