summaryrefslogtreecommitdiffstats
path: root/IncSet.c
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2014-01-16 18:51:16 -0200
committerHisham Muhammad <hisham@gobolinux.org>2014-01-16 18:51:16 -0200
commit76a715ee8c8c8ace5a341d81ca39dd1747886187 (patch)
tree827aed752113618de0b2ba09ed0bb3edc0a9968a /IncSet.c
parentc1e0f6e17c16236d68ed26a5e413e9234293f4d9 (diff)
Fix order of calloc arguments.
(Patch by Dawid Gajownik)
Diffstat (limited to 'IncSet.c')
-rw-r--r--IncSet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/IncSet.c b/IncSet.c
index 2b9e052b..f38ba6dc 100644
--- a/IncSet.c
+++ b/IncSet.c
@@ -77,7 +77,7 @@ static inline void IncMode_done(IncMode* mode) {
}
IncSet* IncSet_new(FunctionBar* bar) {
- IncSet* this = calloc(sizeof(IncSet), 1);
+ IncSet* this = calloc(1, sizeof(IncSet));
IncMode_initSearch(&(this->modes[INC_SEARCH]));
IncMode_initFilter(&(this->modes[INC_FILTER]));
this->active = NULL;

© 2014-2024 Faster IT GmbH | imprint | privacy policy