Bug fix #195: Pointer incompatibility with libconfig-1.3*
Fix pointer incompatibility with libconfig-1.3*. Thanks to sstewartgallus for reporting. (#195)
This commit is contained in:
parent
349af129b8
commit
bb55706c05
|
@ -5458,7 +5458,7 @@ parse_config(session_t *ps, struct options_tmp *pcfgtmp) {
|
||||||
&& !parse_conv_kern_lst(ps, sval, ps->o.blur_kerns, MAX_BLUR_PASS))
|
&& !parse_conv_kern_lst(ps, sval, ps->o.blur_kerns, MAX_BLUR_PASS))
|
||||||
exit(1);
|
exit(1);
|
||||||
// --resize-damage
|
// --resize-damage
|
||||||
config_lookup_int(&cfg, "resize-damage", &ps->o.resize_damage);
|
lcfg_lookup_int(&cfg, "resize-damage", &ps->o.resize_damage);
|
||||||
// --glx-no-stencil
|
// --glx-no-stencil
|
||||||
lcfg_lookup_bool(&cfg, "glx-no-stencil", &ps->o.glx_no_stencil);
|
lcfg_lookup_bool(&cfg, "glx-no-stencil", &ps->o.glx_no_stencil);
|
||||||
// --glx-copy-from-front
|
// --glx-copy-from-front
|
||||||
|
|
Loading…
Reference in New Issue