summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Scott <nathans@redhat.com>2021-11-05 09:22:09 +1100
committerNathan Scott <nathans@redhat.com>2021-11-05 09:22:09 +1100
commite7a8d14cbd7bbb896e64effed5bc6fb023777d36 (patch)
tree2205decb7189f3664220be0d053bb5137e1ae37c
parent21cb1c4d599f1400de40703396210c17bc4acfe9 (diff)
Correct the order of xCalloc parameters in a couple of places
No functional change. Thanks to @BenBE for pointing these out.
-rw-r--r--netbsd/NetBSDProcess.c2
-rw-r--r--openbsd/OpenBSDProcess.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/netbsd/NetBSDProcess.c b/netbsd/NetBSDProcess.c
index f80db5bd..8d2b4c40 100644
--- a/netbsd/NetBSDProcess.c
+++ b/netbsd/NetBSDProcess.c
@@ -211,7 +211,7 @@ const ProcessFieldData Process_fields[LAST_PROCESSFIELD] = {
};
Process* NetBSDProcess_new(const Settings* settings) {
- NetBSDProcess* this = xCalloc(sizeof(NetBSDProcess), 1);
+ NetBSDProcess* this = xCalloc(1, sizeof(NetBSDProcess));
Object_setClass(this, Class(NetBSDProcess));
Process_init(&this->super, settings);
return &this->super;
diff --git a/openbsd/OpenBSDProcess.c b/openbsd/OpenBSDProcess.c
index fe9018d2..ac3def3a 100644
--- a/openbsd/OpenBSDProcess.c
+++ b/openbsd/OpenBSDProcess.c
@@ -203,7 +203,7 @@ const ProcessFieldData Process_fields[LAST_PROCESSFIELD] = {
};
Process* OpenBSDProcess_new(const Settings* settings) {
- OpenBSDProcess* this = xCalloc(sizeof(OpenBSDProcess), 1);
+ OpenBSDProcess* this = xCalloc(1, sizeof(OpenBSDProcess));
Object_setClass(this, Class(OpenBSDProcess));
Process_init(&this->super, settings);
return &this->super;

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