aboutsummaryrefslogtreecommitdiff
path: root/libiberty
diff options
context:
space:
mode:
authorCostas Argyris <costas.argyris@gmail.com>2023-06-05 10:03:11 +0100
committerJonathan Yong <10walls@gmail.com>2023-06-05 12:13:28 +0000
commit7ee22dc8925d3db9d42a0724f5e1fcc57562306b (patch)
tree4d6454e9c985828e798ba07995dc6f33bd2d6eea /libiberty
parent71ea7a3030590567938a3884583f7c0dd885f50c (diff)
downloadgcc-7ee22dc8925d3db9d42a0724f5e1fcc57562306b.zip
gcc-7ee22dc8925d3db9d42a0724f5e1fcc57562306b.tar.gz
gcc-7ee22dc8925d3db9d42a0724f5e1fcc57562306b.tar.bz2
libiberty: pex-win32.c: Fix some typos.
libiberty/ChangeLog: * pex-win32.c: fix typos. Signed-off-by: Costas Argyris <costas.argyris@gmail.com> Signed-off-by: Jonathan Yong <10walls@gmail.com>
Diffstat (limited to 'libiberty')
-rw-r--r--libiberty/pex-win32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libiberty/pex-win32.c b/libiberty/pex-win32.c
index 0fd8b38..f7fe306 100644
--- a/libiberty/pex-win32.c
+++ b/libiberty/pex-win32.c
@@ -351,7 +351,7 @@ argv_to_cmdline (char *const *argv)
prevent wasting 2 chars per argument of the CreateProcess 32k char
limit. We need only escape embedded double-quotes and immediately
preceeding backslash characters. A sequence of backslach characters
- that is not follwed by a double quote character will not be
+ that is not followed by a double quote character will not be
escaped. */
needs_quotes = 0;
for (j = 0; argv[i][j]; j++)
@@ -366,7 +366,7 @@ argv_to_cmdline (char *const *argv)
/* Escape preceeding backslashes. */
for (k = j - 1; k >= 0 && argv[i][k] == '\\'; k--)
cmdline_len++;
- /* Escape the qote character. */
+ /* Escape the quote character. */
cmdline_len++;
}
}