Nico Schottelius <nicos-mutt@xxxxxxxxxxxx> wrote: > Sat, Feb 23, 2002 at 05:05:59PM -0300, Fr?d?ric L. W. Meunier: >> And a report. There are 2 GCC 3.x warnings: >> >> /usr/local/src/gpm-1.20.0/src/synaptics.c: In function syn_read_config_file': >> /usr/local/src/gpm-1.20.0/src/synaptics.c:819: warning: deprecated use of label at end of compound statement > > it's not a label...it's part of the switch statement, but without a break. That's still a label, just a different kind. A statement of some kind is syntactically required after a label. You can use a plain ";" if you don't want to spell out "break;". paul