From: Rico Tzschichholz Date: Fri, 14 Jun 2019 16:32:24 +0000 (+0200) Subject: vala: Use non-deprecated GLib.ModuleFlags values X-Git-Tag: 0.45.2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fkeep-around%2F9dbb04191114cbd5a0789151391941faff10c967;p=thirdparty%2Fvala.git vala: Use non-deprecated GLib.ModuleFlags values --- diff --git a/vala/valareport.vala b/vala/valareport.vala index 766788706..5df85b32e 100644 --- a/vala/valareport.vala +++ b/vala/valareport.vala @@ -394,7 +394,7 @@ public class Vala.Report { private delegate int AttyFunc (int fd); private bool is_atty (int fd) { - Module module = Module.open (null, ModuleFlags.BIND_LAZY); + Module module = Module.open (null, ModuleFlags.LAZY); if (module == null) { return false; }