diff options
Diffstat (limited to 'net/atm/proc.c')
| -rw-r--r-- | net/atm/proc.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/net/atm/proc.c b/net/atm/proc.c index 0b0495a41bbe..d79221fd4dae 100644 --- a/net/atm/proc.c +++ b/net/atm/proc.c @@ -134,7 +134,8 @@ static void vcc_seq_stop(struct seq_file *seq, void *v)  static void *vcc_seq_next(struct seq_file *seq, void *v, loff_t *pos)  {  	v = vcc_walk(seq, 1); -	*pos += !!PTR_ERR(v); +	if (v) +		(*pos)++;  	return v;  }  |