diff options
author | torset | 2009-01-09 13:15:18 +0000 |
---|---|---|
committer | torset | 2009-01-09 13:15:18 +0000 |
commit | 06f8b047f5bb344f3239fd90d634e583af1e3edc (patch) | |
tree | 324ff35a7a19d0d8ace786c9e0936d2aff316f47 /src/auxiliaryFunctions/isempty/disemptya.c | |
parent | 5990ef5e5762976752eac62959b844dc4e9ec004 (diff) | |
download | scilab2c-06f8b047f5bb344f3239fd90d634e583af1e3edc.tar.gz scilab2c-06f8b047f5bb344f3239fd90d634e583af1e3edc.tar.bz2 scilab2c-06f8b047f5bb344f3239fd90d634e583af1e3edc.zip |
Change in isempty because of the change of find
Diffstat (limited to 'src/auxiliaryFunctions/isempty/disemptya.c')
-rw-r--r-- | src/auxiliaryFunctions/isempty/disemptya.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/auxiliaryFunctions/isempty/disemptya.c b/src/auxiliaryFunctions/isempty/disemptya.c index 8129b981..c4e76f9a 100644 --- a/src/auxiliaryFunctions/isempty/disemptya.c +++ b/src/auxiliaryFunctions/isempty/disemptya.c @@ -13,7 +13,7 @@ #include "isempty.h" bool disemptya(double* x, int size) { - if (dfinda(x, size) == NOT_FOUND) { + if (dfinda(x, size) == NULL) { return true; } return false; |