Browse Source

Move err struct member into anonymous union

master
T. Meissner 5 years ago
parent
commit
0e78985a89
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      chapter_08/lispy.c

+ 1
- 1
chapter_08/lispy.c View File

@ -37,8 +37,8 @@ typedef struct {
union {
long num;
double dec;
int err;
};
int err;
} lval;


Loading…
Cancel
Save