Commit 73b4d3f4 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Pointless tweak.

parent 8c335dcd
......@@ -322,11 +322,11 @@ parse_filter(gnc_t gnc, void *closure)
static void
add_filter(struct filter *filter, struct filter **filters)
{
struct filter *f;
if(*filters == NULL) {
filter->next = NULL;
*filters = filter;
} else {
struct filter *f;
f = *filters;
while(f->next)
f = f->next;
......
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