Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 227666
b: refs/heads/master
c: 17742dc
h: refs/heads/master
v: v3
  • Loading branch information
Michal Marek committed Dec 21, 2010
1 parent 0a9dc19 commit d12fef6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1137c56b7420c801147e0863845c03b07554721a
refs/heads/master: 17742dc743716eebbf5892add0e0bf91f541fc39
2 changes: 1 addition & 1 deletion trunk/scripts/kconfig/expr.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ struct expr *expr_alloc_or(struct expr *e1, struct expr *e2)
return e2 ? expr_alloc_two(E_OR, e1, e2) : e1;
}

struct expr *expr_copy(struct expr *org)
struct expr *expr_copy(const struct expr *org)
{
struct expr *e;

Expand Down
2 changes: 1 addition & 1 deletion trunk/scripts/kconfig/expr.h
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e
struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2);
struct expr *expr_alloc_and(struct expr *e1, struct expr *e2);
struct expr *expr_alloc_or(struct expr *e1, struct expr *e2);
struct expr *expr_copy(struct expr *org);
struct expr *expr_copy(const struct expr *org);
void expr_free(struct expr *e);
int expr_eq(struct expr *e1, struct expr *e2);
void expr_eliminate_eq(struct expr **ep1, struct expr **ep2);
Expand Down

0 comments on commit d12fef6

Please sign in to comment.