29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
|
|
From e5987111a8fc89ed86e43ab81e0805d958c61b2c Mon Sep 17 00:00:00 2001
|
||
|
|
From: yangchenguang <yangchenguang@uniontech.com>
|
||
|
|
Date: Thu, 19 Jan 2023 13:27:29 +0800
|
||
|
|
Subject: [PATCH] fix help info error
|
||
|
|
|
||
|
|
Signed-off-by: yangchenguang <yangchenguang@uniontech.com>
|
||
|
|
---
|
||
|
|
asm/nasm.c | 4 ++--
|
||
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
|
||
|
|
diff --git a/asm/nasm.c b/asm/nasm.c
|
||
|
|
index e5ae89a..e00408b 100644
|
||
|
|
--- a/asm/nasm.c
|
||
|
|
+++ b/asm/nasm.c
|
||
|
|
@@ -2293,8 +2293,8 @@ static void help(FILE *out)
|
||
|
|
"\n"
|
||
|
|
" --prefix str prepend the given string to the names of all extern,\n"
|
||
|
|
" common and global symbols (also --gprefix)\n"
|
||
|
|
- " --suffix str append the given string to the names of all extern,\n"
|
||
|
|
- " common and global symbols (also --gprefix)\n"
|
||
|
|
+ " --postfix str append the given string to the names of all extern,\n"
|
||
|
|
+ " common and global symbols (also --gpostfix)\n"
|
||
|
|
" --lprefix str prepend the given string to local symbols\n"
|
||
|
|
" --lpostfix str append the given string to local symbols\n"
|
||
|
|
"\n"
|
||
|
|
--
|
||
|
|
2.20.1
|
||
|
|
|