From 18b13ed4b401d5a7e463eff7ebb31a318ae596e4 Mon Sep 17 00:00:00 2001 From: Roy Ivy III Date: Sat, 23 May 2020 20:57:31 -0500 Subject: [PATCH] build/uucore_procs ~ fix proc_dbg!() for MinSRV of v1.31.0 --- src/uucore/src/uucore_procs/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uucore/src/uucore_procs/src/lib.rs b/src/uucore/src/uucore_procs/src/lib.rs index 44a983b94..38847dd55 100644 --- a/src/uucore/src/uucore_procs/src/lib.rs +++ b/src/uucore/src/uucore_procs/src/lib.rs @@ -18,7 +18,7 @@ macro_rules! proc_dbg { #[cfg(not(feature = "debug"))] macro_rules! proc_dbg { ($x:expr) => { - std::convert::identity($x) + $x }; }