diff options
| author | Dan Williams <dan.j.williams@intel.com> | 2009-04-08 14:28:13 -0700 | 
|---|---|---|
| committer | Dan Williams <dan.j.williams@intel.com> | 2009-04-08 14:28:13 -0700 | 
| commit | fd74ea65883c7e6903e9b652795f72b723a2be69 (patch) | |
| tree | 0792ad598080eae201d2836ac3c5a8fc46d0d03e /scripts/unifdef.c | |
| parent | c8f517c444e4f9f55b5b5ca202b8404691a35805 (diff) | |
| parent | 8c6db1bbf80123839ec87bdd6cb364aea384623d (diff) | |
Merge branch 'dmaengine' into async-tx-raid6
Diffstat (limited to 'scripts/unifdef.c')
| -rw-r--r-- | scripts/unifdef.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/scripts/unifdef.c b/scripts/unifdef.c index 552025e72ac..05a31a6c7e1 100644 --- a/scripts/unifdef.c +++ b/scripts/unifdef.c @@ -206,7 +206,7 @@ static void             done(void);  static void             error(const char *);  static int              findsym(const char *);  static void             flushline(bool); -static Linetype         getline(void); +static Linetype         get_line(void);  static Linetype         ifeval(const char **);  static void             ignoreoff(void);  static void             ignoreon(void); @@ -512,7 +512,7 @@ process(void)  	for (;;) {  		linenum++; -		lineval = getline(); +		lineval = get_line();  		trans_table[ifstate[depth]][lineval]();  		debug("process %s -> %s depth %d",  		    linetype_name[lineval], @@ -526,7 +526,7 @@ process(void)   * help from skipcomment().   */  static Linetype -getline(void) +get_line(void)  {  	const char *cp;  	int cursym; | 
