summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormongo <mongo@iomega>2016-04-22 17:18:43 -0300
committermongo <mongo@iomega>2016-04-22 17:18:43 -0300
commitba56bdf531a4253cc5622ca46fafa759ad11ff93 (patch)
tree52c04bb0eb1ce4b28c9e0b321f0ff322cbf39c69
parent2b25fcf59eb38c5ce039bfd7488d9172f858b33e (diff)
Fix filters - after bug that appeared when added wide chars support
-rwxr-xr-xsrc/filter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filter.c b/src/filter.c
index 9723d4a..fdf43bc 100755
--- a/src/filter.c
+++ b/src/filter.c
@@ -79,7 +79,7 @@ void enable_filters(struct ent * left, struct ent * right) {
c++;
}
- swprintf(aux, BUFFERSIZE, L"eval %s", cadena);
+ swprintf(aux, BUFFERSIZE, L"eval %ls", cadena);
send_to_interp(aux);
if ( (! seval_result && str_in_str(filters[i].eval, "seval") != -1) || ! eval_result) {
results[r-minr+2] = 1; // this row does not eval to expression. we hide it. (1 = HIDDEN)!