Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 220670
b: refs/heads/master
c: 2e7a091
h: refs/heads/master
v: v3
  • Loading branch information
Arnaud Lacombe committed Sep 20, 2010
1 parent 100e4b4 commit 90bbeac
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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: ba6ff60d5eb47d52f1a5eb0bb6ffa751be838c46
refs/heads/master: 2e7a091833f014cac8a6b92573ca6cd2edd2753c
2 changes: 1 addition & 1 deletion trunk/scripts/kconfig/expr.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ extern "C" {
struct file {
struct file *next;
struct file *parent;
char *name;
const char *name;
int lineno;
int flags;
};
Expand Down
2 changes: 1 addition & 1 deletion trunk/scripts/kconfig/lkc.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ FILE *zconf_fopen(const char *name);
void zconf_initscan(const char *name);
void zconf_nextfile(const char *name);
int zconf_lineno(void);
char *zconf_curname(void);
const char *zconf_curname(void);

/* conf.c */
void xfgets(char *str, int size, FILE *in);
Expand Down
2 changes: 1 addition & 1 deletion trunk/scripts/kconfig/zconf.l
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ int zconf_lineno(void)
return current_pos.lineno;
}

char *zconf_curname(void)
const char *zconf_curname(void)
{
return current_pos.file ? current_pos.file->name : "<none>";
}

0 comments on commit 90bbeac

Please sign in to comment.