aboutsummaryrefslogtreecommitdiff
path: root/bpkg/fetch.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-02-29 11:28:02 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-02-29 11:28:02 +0200
commit6d036eb95b33b9968e5e95e3e3e9b5a42ba99cc9 (patch)
treed78ac80d8a0a3d20c98169fe945c7764bea65847 /bpkg/fetch.cxx
parent5e761f5bee6f0bec9b4554821509bfaa6381d1c8 (diff)
Rename level[1-6]() to l[1-6]()
Diffstat (limited to 'bpkg/fetch.cxx')
-rw-r--r--bpkg/fetch.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/bpkg/fetch.cxx b/bpkg/fetch.cxx
index 257d903..9a5c74a 100644
--- a/bpkg/fetch.cxx
+++ b/bpkg/fetch.cxx
@@ -64,14 +64,14 @@ namespace bpkg
if (p != s.size () && s[p] == '.')
wget_minor = static_cast<uint16_t> (stoul (string (s, p + 1)));
- level4 ([&]{trace << "version " << wget_major << '.' << wget_minor;});
+ l4 ([&]{trace << "version " << wget_major << '.' << wget_minor;});
}
catch (const std::exception&)
{
wget_major = 0;
wget_minor = 0;
- level4 ([&]{trace << "unable to extract version from '" << l << "'";});
+ l4 ([&]{trace << "unable to extract version from '" << l << "'";});
}
return pr.wait ();