Fix a few warnings and possible build issues

This commit is contained in:
Andy Williams 2015-02-08 00:55:51 +00:00
parent d8bdb6b892
commit 9f6f9a52ff
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ elm_code_suite_CPPFLAGS = -I$(top_builddir)/elm_code/lib/ \
@EFL_CFLAGS@ \
@CHECK_CFLAGS@
elm_code_suite_LDADD = @CHECK_LIBS@ $(top_builddir)/elm_code/lib/libelm_code.la
elm_code_suite_LDADD = @EFL_LIBS@ @CHECK_LIBS@ $(top_builddir)/elm_code/lib/libelm_code.la
elm_code_suite_DEPENDENCIES = $(top_builddir)/elm_code/lib/libelm_code.la
testdir = $(PACKAGE_TESTS_DIR)

View File

@ -12,7 +12,7 @@ START_TEST (elm_code_create_test)
code = elm_code_create();
elm_code_file_open(code, path);
ck_assert(code);
ck_assert(!!code);
elm_code_free(code);
}
END_TEST