1
0
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:
BusinessmanProgrammerSteve 2010-11-06 21:36:21 +00:00
parent 0870fdec69
commit a5a749f2e8

View File

@ -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) {