diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-03-28 08:35:02 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-03-28 08:58:40 +0100 |
commit | c3ade73cad4332165548709ee8db904040ddafdb (patch) | |
tree | 6452dba34bb55933a5be4458037b8f25d791afb7 /migration/20180428_00-module-names.cpp | |
parent | 8a31ed10c8ed91b35f9fa3831e76ddb819fab88a (diff) |
migration: fix spurious semicolon
Diffstat (limited to 'migration/20180428_00-module-names.cpp')
-rw-r--r-- | migration/20180428_00-module-names.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/migration/20180428_00-module-names.cpp b/migration/20180428_00-module-names.cpp index 0c59add9..9558829f 100644 --- a/migration/20180428_00-module-names.cpp +++ b/migration/20180428_00-module-names.cpp @@ -17,7 +17,7 @@ struct module_names : migration dylib_list const& list; }; - Modules m { OPENTRACK_BASE_PATH + OPENTRACK_LIBRARY_PATH }; + Modules m { OPENTRACK_BASE_PATH + OPENTRACK_LIBRARY_PATH, dylib_load_quiet }; module_type types[3] { { "tracker-dll", "pt", m.trackers() }, @@ -89,4 +89,4 @@ struct module_names : migration } }; -OPENTRACK_MIGRATION(module_names); +OPENTRACK_MIGRATION(module_names) |