~snowball-yiddish-dev/snowball-yiddish/trunk

« back to all changes in this revision

Viewing changes to snowball/compiler/generator.c

  • Committer: richard
  • Date: 2004-02-25 11:50:30 UTC
  • Revision ID: svn-v4:633ccae0-01f4-0310-8c99-d3591da6f01f:trunk:246
Fix remaining couple of warnings, and turn -Werror on (except for compiling
of generated code).

Show diffs side-by-side

added added

removed removed

Lines of Context:
145
145
}
146
146
 
147
147
static char * restore_string(struct generator * g, struct node * p)
148
 
{   return p->mode == m_forward ? "z->c = c;" :
 
148
{
 
149
    (void) g;
 
150
    return p->mode == m_forward ? "z->c = c;" :
149
151
                                  "z->c = z->l - m;";
150
152
}
151
153