From a5a749f2e8ae34086c01162350d204879c18f225 Mon Sep 17 00:00:00 2001 From: BusinessmanProgrammerSteve Date: Sat, 6 Nov 2010 21:36:21 +0000 Subject: [PATCH] Fix compile warning: signed/unsigned comparison in Nyquist.cpp --- src/effects/nyquist/Nyquist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/effects/nyquist/Nyquist.cpp b/src/effects/nyquist/Nyquist.cpp index 0823e07c9..44ee32f78 100644 --- a/src/effects/nyquist/Nyquist.cpp +++ b/src/effects/nyquist/Nyquist.cpp @@ -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) {