I just had to fix dialog-options.c because there was a section
of code that read:
if (...)
{
DEBUG(...);
GtkEntry * entry = ...;
...
}
This is an illegal construct. Please don't use it. If you want to
use a DEBUG() like this, PLEASE PLEASE PLEASE change the code to:
{
GtkEntry *entry;
DEBUG(...);
entry = ...;
}
I realize that gcc-3 does not complain about this construct, but
other compilers do (including gcc-2.9x). Please be careful in the
future.
Thanks,
-derek
--
Derek Atkins, SB '93 MIT EE, SM '95 MIT Media Laboratory
Member, MIT Student Information Processing Board (SIPB)
URL: http://web.mit.edu/warlord/ PP-ASEL-IA N1NWH
[EMAIL PROTECTED] PGP key available
_______________________________________________
gnucash-devel mailing list
[EMAIL PROTECTED]
http://www.gnucash.org/cgi-bin/mailman/listinfo/gnucash-devel