Commit 9e3f6c5e authored by Joe Perches's avatar Joe Perches Committed by Linus Torvalds

[PATCH] Fix SEQ_START_TOKEN typo

My fault.  Fix for broken aarp.c which got an extra closing parenthesis.
parent 7bc26fad
......@@ -941,7 +941,7 @@ static void *aarp_seq_start(struct seq_file *seq, loff_t *pos)
iter->table = resolved;
iter->bucket = 0;
return *pos ? iter_next(iter, pos) : SEQ_START_TOKEN);
return *pos ? iter_next(iter, pos) : SEQ_START_TOKEN;
}
static void *aarp_seq_next(struct seq_file *seq, void *v, loff_t *pos)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment