30 lines
1.0 KiB
Diff
30 lines
1.0 KiB
Diff
From 4a7427984d2937dfa99cb76ff2c4c07479079852 Mon Sep 17 00:00:00 2001
|
|
From: wangmengc <wangmengc@uniontech.com>
|
|
Date: Mon, 8 Apr 2024 15:24:17 +0800
|
|
Subject: [PATCH 2/8] =?UTF-8?q?fix=20=20kill=20-l=E5=BA=8F=E5=8F=B7?=
|
|
=?UTF-8?q?=E6=9C=89=E8=AF=AF?=
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
---
|
|
builtins_rust/common/src/lib.rs | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/builtins_rust/common/src/lib.rs b/builtins_rust/common/src/lib.rs
|
|
index 78566eb..1184461 100644
|
|
--- a/builtins_rust/common/src/lib.rs
|
|
+++ b/builtins_rust/common/src/lib.rs
|
|
@@ -1516,7 +1516,7 @@ pub extern "C" fn r_display_signal_list(mut list: *mut WordList, forcecols: i32)
|
|
}
|
|
} else {
|
|
print!(
|
|
- "{:02}{} {}",
|
|
+ "{:>2}{} {}",
|
|
i,
|
|
")",
|
|
CStr::from_ptr(name).to_str().unwrap().to_owned()
|
|
--
|
|
2.43.0
|
|
|