about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/nix-store/nix-store.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc
index b281ea2dd328..89831eb3d303 100644
--- a/src/nix-store/nix-store.cc
+++ b/src/nix-store/nix-store.cc
@@ -428,10 +428,10 @@ static void opQuery(Strings opFlags, Strings opArgs)
                     referrers, true, settings.gcKeepOutputs, settings.gcKeepDerivations);
             }
             Roots roots = store->findRoots();
-            for (auto & [path, roots] : roots)
+            for (auto & [path, links] : roots)
                 if (referrers.find(path) != referrers.end())
-                    for (auto & root : roots)
-                        cout << format("%1% -> %2%\n") % root % path;
+                    for (auto & link : links)
+                        cout << format("%1%\n") % link;
             break;
         }