mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-01 00:19:27 +02:00
Fix compile warning: signed/unsigned comparison in Nyquist.cpp
This commit is contained in:
parent
0870fdec69
commit
a5a749f2e8
@ -459,7 +459,7 @@ bool EffectNyquist::PromptUser()
|
||||
// that #| ... |# style comments are not valid in SAL, so we do
|
||||
// not skip these. Instead, "#|" indicates LISP if found.
|
||||
//
|
||||
int i = 0;
|
||||
unsigned int i = 0;
|
||||
bool inComment = false; // handle "; ... \n" comments
|
||||
while (i < mCmd.Len()) {
|
||||
if (inComment) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user