diff options
Diffstat (limited to 'src/c')
-rw-r--r-- | src/c/auxiliaryFunctions/conj/Makefile.am | 2 | ||||
-rw-r--r-- | src/c/auxiliaryFunctions/conj/Makefile.in | 2 | ||||
-rw-r--r-- | src/c/auxiliaryFunctions/find2d/testFind2d.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/c/auxiliaryFunctions/conj/Makefile.am b/src/c/auxiliaryFunctions/conj/Makefile.am index d3719bfb..e9c9bc98 100644 --- a/src/c/auxiliaryFunctions/conj/Makefile.am +++ b/src/c/auxiliaryFunctions/conj/Makefile.am @@ -34,7 +34,7 @@ check_LDADD = libConj.la \ -check_INCLUDES = -I $(top_builddir)/type \ +check_INCLUDES = -I $(top_builddir)/src/c/type \ -I ../includes testConj_SOURCES = testConj.c diff --git a/src/c/auxiliaryFunctions/conj/Makefile.in b/src/c/auxiliaryFunctions/conj/Makefile.in index b4485193..bb9860c8 100644 --- a/src/c/auxiliaryFunctions/conj/Makefile.in +++ b/src/c/auxiliaryFunctions/conj/Makefile.in @@ -220,7 +220,7 @@ check_LDADD = libConj.la \ $(top_builddir)/src/c/type/libFloatComplex.la \ $(top_builddir)/src/c/operations/addition/libAddition.la -check_INCLUDES = -I $(top_builddir)/type \ +check_INCLUDES = -I $(top_builddir)/src/c/type \ -I ../includes testConj_SOURCES = testConj.c diff --git a/src/c/auxiliaryFunctions/find2d/testFind2d.c b/src/c/auxiliaryFunctions/find2d/testFind2d.c index a6f38b56..1fcfdc9e 100644 --- a/src/c/auxiliaryFunctions/find2d/testFind2d.c +++ b/src/c/auxiliaryFunctions/find2d/testFind2d.c @@ -43,7 +43,7 @@ int sfind2daTest() { } printf("\n"); - sfind2da(badArray, 1, 6, out1Bad, size1,out2Bad,size2); + sfind2da(badArray, 1, 6, out1Bad, size1,out2Bad,size2,-1); if ((out1Bad[0]!=-1) || (out2Bad[0]!=-1) ) { printf("ERROR ! : Test Failed (empty array)\n"); result = ERROR; |