Fixed an uninitiated pointer.
This commit is contained in:
parent
2cdba854a1
commit
cd5935deb7
1 changed files with 2 additions and 2 deletions
|
@ -19,13 +19,13 @@ struct yywork
|
|||
struct yysvf
|
||||
{
|
||||
struct yywork *yystoff;
|
||||
};
|
||||
} yysvec[1];
|
||||
|
||||
unsigned char fails = 0;
|
||||
|
||||
int main(int n, char **args)
|
||||
{
|
||||
struct yysvf *yystate;
|
||||
struct yysvf *yystate = yysvec;
|
||||
struct yywork *yyt;
|
||||
|
||||
yystate->yystoff = yycrank;
|
||||
|
|
Loading…
Add table
Reference in a new issue