diff options
author | 17:40:58 Tim Janik <timj@imendio.com> | 2008-04-18 15:40:38 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2008-04-18 15:40:38 +0000 |
commit | d6682a1f2d3841f749c9484ecb3ad23508cf04d4 (patch) | |
tree | 32baf910ecec28937a86b44aec4ae95128d51474 /tests | |
parent | 62b18e67b7ef12b0475e12b631a7f384030567de (diff) |
fixed gstdio.h include.
2008-04-18 17:40:58 Tim Janik <timj@imendio.com>
* tests/testglib.c: fixed gstdio.h include.
* tests/Makefile.am: properly list testglib.c SOURCES.
svn path=/trunk/; revision=6862
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 1 | ||||
-rw-r--r-- | tests/testglib.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 807327825..9a6fbcf69 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -77,6 +77,7 @@ TEST_PROGS += scannerapi scannerapi_SOURCES = scannerapi.c scannerapi_LDADD = $(progs_ldadd) TEST_PROGS += testglib +testglib_SOURCES = testglib.c testglib_LDADD = $(libglib) TEST_PROGS += testingbase64 testingbase64_SOURCES = testingbase64.c diff --git a/tests/testglib.c b/tests/testglib.c index 9180d9cfd..4f84adc98 100644 --- a/tests/testglib.c +++ b/tests/testglib.c @@ -33,7 +33,7 @@ #include <errno.h> #include "glib.h" -#include "gstdio.h" +#include <glib/gstdio.h> #include <stdlib.h> |