r208: *** empty log message ***
[ctsim.git] / libctsim / filter.cpp
index 43b2d539320af25a54381ae8ec224faff2e8febf..23cd2268a1192768f96092fd4220b515a05395e1 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: filter.cpp,v 1.28 2000/11/10 15:29:37 kevin Exp $
+**  $Id: filter.cpp,v 1.29 2000/11/22 07:38:52 kevin Exp $
 **
 **  This program is free software; you can redistribute it and/or modify
 **  it under the terms of the GNU General Public License (version 2) as
@@ -228,7 +228,7 @@ SignalFilter::convertFilterNameToID (const char *filterName)
   int filterID = FILTER_INVALID;
 
   for (int i = 0; i < s_iFilterCount; i++)
-cc    if (strcasecmp (filterName, s_aszFilterName[i]) == 0) {
+    if (strcasecmp (filterName, s_aszFilterName[i]) == 0) {
       filterID = i;
       break;
     }