summaryrefslogtreecommitdiff
path: root/src/auxiliaryFunctions/isempty/disemptya.c
diff options
context:
space:
mode:
authortorset2009-01-09 13:15:18 +0000
committertorset2009-01-09 13:15:18 +0000
commit06f8b047f5bb344f3239fd90d634e583af1e3edc (patch)
tree324ff35a7a19d0d8ace786c9e0936d2aff316f47 /src/auxiliaryFunctions/isempty/disemptya.c
parent5990ef5e5762976752eac62959b844dc4e9ec004 (diff)
downloadscilab2c-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.c2
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;