diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-06-28 11:53:59 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-06-28 11:53:59 +0000 |
commit | 543a89568ea3d587d95778b3298b8588bc589c20 (patch) | |
tree | e03f51d850c1edc8f906f0ae60ee159cc7096e77 /package/config/expr.h | |
parent | afc61c6e8e3f9d0065c2328d4a01227cfa71ba5d (diff) | |
download | buildroot-novena-543a89568ea3d587d95778b3298b8588bc589c20.tar.gz buildroot-novena-543a89568ea3d587d95778b3298b8588bc589c20.zip |
- make it compile with a C89 compiler
Diffstat (limited to 'package/config/expr.h')
-rw-r--r-- | package/config/expr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/config/expr.h b/package/config/expr.h index 6084525f6..7c047f730 100644 --- a/package/config/expr.h +++ b/package/config/expr.h @@ -65,7 +65,7 @@ enum symbol_type { enum { S_DEF_USER, /* main user value */ - S_DEF_AUTO, + S_DEF_AUTO }; struct symbol { @@ -139,7 +139,7 @@ struct menu { struct property *prompt; struct expr *dep; unsigned int flags; - //char *help; + /*char *help; */ struct file *file; int lineno; void *data; |