diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2024-02-06 04:51:48 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2024-02-06 04:51:48 +0200 |
commit | 5b21820a4ad0f69290c6a20643640ff5fbf5021a (patch) | |
tree | 50947d50897e389fe29433cfda4fcbb633a1b21f /libbuild2/install/utility.cxx | |
parent | 0e1b73e3b43bca7c1d77ed669b364819ad211da9 (diff) |
Fix bunch of maybe used uninitialized warnings
Diffstat (limited to 'libbuild2/install/utility.cxx')
-rw-r--r-- | libbuild2/install/utility.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/install/utility.cxx b/libbuild2/install/utility.cxx index c8b6a92..43d97fb 100644 --- a/libbuild2/install/utility.cxx +++ b/libbuild2/install/utility.cxx @@ -98,7 +98,7 @@ namespace build2 v = false; else fail << "expected true or false instead of '" << string (s, 0, p) - << "' in config.install.filter value"; + << "' in config.install.filter value" << endf; if (p != string::npos) { |