diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-06-17 10:50:16 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-06-17 10:50:16 +0200 |
commit | 8e66496968c1f2d8f2a3506f63d7e3685e01cd6b (patch) | |
tree | 35f6a2d303cd4782c5fa2d6e81bd4aea78409675 | |
parent | 9ff442fc32887d2b8f2d19329fb9f12e723b9de7 (diff) |
Fix variable name clash
-rw-r--r-- | bpkg/pkg-build.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bpkg/pkg-build.cxx b/bpkg/pkg-build.cxx index a8976ad..1db4d6a 100644 --- a/bpkg/pkg-build.cxx +++ b/bpkg/pkg-build.cxx @@ -12016,8 +12016,8 @@ namespace bpkg // dependent-dependency structure change without any of the // package versions changing? Doesn't feel like it should. // - for (const package_key& p: p.required_by) - rb += (rb.empty () ? " " : ", ") + p.string (); + for (const package_key& pk: p.required_by) + rb += (rb.empty () ? " " : ", ") + pk.string (); // If not user-selected, then there should be another (implicit) // reason for the action. |