diff options
author | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-05-31 13:54:13 -0700 |
---|---|---|
committer | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-05-31 14:36:24 -0700 |
commit | 4593538fc864fe67d4c31376506f4d2b81201895 (patch) | |
tree | ffdd1ec7f447dce5aa9fd63269c41723585f926c | |
parent | 03b66ba7a5a1e35f47a59a9e1cd5d73ad6685c8e (diff) | |
download | PrismLauncher-4593538fc864fe67d4c31376506f4d2b81201895.tar.gz PrismLauncher-4593538fc864fe67d4c31376506f4d2b81201895.tar.bz2 PrismLauncher-4593538fc864fe67d4c31376506f4d2b81201895.zip |
fix: typo - space before comment
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
-rw-r--r-- | program_info/win_install.nsi.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program_info/win_install.nsi.in b/program_info/win_install.nsi.in index 27c40039..8389e246 100644 --- a/program_info/win_install.nsi.in +++ b/program_info/win_install.nsi.in @@ -293,7 +293,7 @@ Function RunUninstall stringloop: ; get string length StrCpy $2 $1 1 $3 ; get next char IntOp $3 $3 + 1 ; index += 1 - StrCmp $2 "" +2 stringloop; if empty exit loop + StrCmp $2 "" +2 stringloop ; if empty exit loop IntOp $3 $3 - 1 ; index -= 1 Goto run quoteloop: ; get string length with quotes removed |