about summary refs log tree commit diff
path: root/third_party/nix/src/libexpr/primops.cc
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2020-05-19T03·51+0100
committerVincent Ambo <tazjin@google.com>2020-05-19T03·51+0100
commitc7be956f3f5e2b50e3af72a6170a455f20b1643b (patch)
tree64af49d62c1047ca7b213d3083f88dbd89227b9d /third_party/nix/src/libexpr/primops.cc
parentf8deeb144291e8da1e9bc1f497a67fc9428d7ba2 (diff)
style(3p/nix/libexpr): Reformat with clang-format r/760
Diffstat (limited to 'third_party/nix/src/libexpr/primops.cc')
-rw-r--r--third_party/nix/src/libexpr/primops.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/nix/src/libexpr/primops.cc b/third_party/nix/src/libexpr/primops.cc
index 05fa9c4828..23eaba5797 100644
--- a/third_party/nix/src/libexpr/primops.cc
+++ b/third_party/nix/src/libexpr/primops.cc
@@ -1,5 +1,6 @@
 #include "primops.hh"
 #include <dlfcn.h>
+#include <glog/logging.h>
 #include <sys/stat.h>
 #include <sys/types.h>
 #include <unistd.h>
@@ -19,7 +20,6 @@
 #include "util.hh"
 #include "value-to-json.hh"
 #include "value-to-xml.hh"
-#include <glog/logging.h>
 
 namespace nix {
 
@@ -508,7 +508,7 @@ static void prim_trace(EvalState& state, const Pos& pos, Value** args,
   if (args[0]->type == tString) {
     DLOG(INFO) << "trace: " << args[0]->string.s;
   } else {
-    DLOG(INFO)<< "trace: " << *args[0];
+    DLOG(INFO) << "trace: " << *args[0];
   }
   state.forceValue(*args[1]);
   v = *args[1];