aboutsummaryrefslogtreecommitdiff
path: root/lib/forlan.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/forlan.c')
-rw-r--r--lib/forlan.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/forlan.c b/lib/forlan.c
index 977271d..9fc80cb 100644
--- a/lib/forlan.c
+++ b/lib/forlan.c
@@ -1,5 +1,5 @@
/* This file is part of Eclat.
- Copyright (C) 2012-2015 Sergey Poznyakoff.
+ Copyright (C) 2012-2018 Sergey Poznyakoff.
Eclat is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -979,10 +979,10 @@ func_sort(forlan_eval_env_t env, struct grecs_list *list)
forlan_compar = forlan_compar_string;
forlan_sort_reverse = 0;
- if (ep = list->head->next) {
+ if ((ep = list->head->next)) {
t = ep->data;
forlan_sort_key = t->v.string;
- if (ep = ep->next) {
+ if ((ep = ep->next)) {
char *p;
t = ep->data;

Return to:

Send suggestions and report system problems to the System administrator.