mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
11 lines
251 B
Diff
11 lines
251 B
Diff
--- a/src/select/computed.c
|
|
+++ b/src/select/computed.c
|
|
@@ -73,7 +73,7 @@
|
|
if (result == NULL)
|
|
return CSS_BADPARM;
|
|
|
|
- s = calloc(sizeof(css_computed_style), 1);
|
|
+ s = calloc(1, sizeof(css_computed_style));
|
|
if (s == NULL)
|
|
return CSS_NOMEM;
|
|
|