summaryrefslogtreecommitdiff
path: root/src/auxiliaryFunctions/find/zfinda.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/auxiliaryFunctions/find/zfinda.c')
-rw-r--r--src/auxiliaryFunctions/find/zfinda.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/auxiliaryFunctions/find/zfinda.c b/src/auxiliaryFunctions/find/zfinda.c
index 4118a6fd..5b189d9d 100644
--- a/src/auxiliaryFunctions/find/zfinda.c
+++ b/src/auxiliaryFunctions/find/zfinda.c
@@ -5,7 +5,7 @@
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Tue Feb 13 16:51:44 2007 jofret
-** Last update Tue Apr 24 18:12:37 2007 jofret
+** Last update Mon Oct 22 15:45:46 2007 bruno
**
** Copyright INRIA 2007
*/
@@ -15,7 +15,7 @@
int zfinda(doubleComplex* z, int size) {
int i = 0;
for (i = 0; i < size ; ++i) {
- if (zreals(z[i]) != 0 || zimags(z[i])) {
+ if (zreals(z[i]) != 0 || zimags(z[i]) != 0) {
return i;
}
}