diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-04-27 01:38:10 +0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-04-27 02:19:37 +0200 |
commit | 74b2ee22a6b60d53b1241e0c52284b288e561599 (patch) | |
tree | 8d1b197f657af22912f8e6d611c6c9cccd9890d9 /tests/check_source_parser.c | |
parent | 6153580a13e7e7c48e38fa446572c8adcae08084 (diff) | |
download | blogc-74b2ee22a6b60d53b1241e0c52284b288e561599.tar.gz blogc-74b2ee22a6b60d53b1241e0c52284b288e561599.tar.bz2 blogc-74b2ee22a6b60d53b1241e0c52284b288e561599.zip |
moved squareball back to blogc source tree.
i don't have enough time to maintain a separated library at this point,
and worry about soname bump, library stability, etc. all the code is
trivial enough to be copied around, and all the utils are implemented as
single file now, to make it easier to copy.
Diffstat (limited to 'tests/check_source_parser.c')
-rw-r--r-- | tests/check_source_parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/check_source_parser.c b/tests/check_source_parser.c index 0f891dd..477399c 100644 --- a/tests/check_source_parser.c +++ b/tests/check_source_parser.c @@ -173,7 +173,7 @@ test_source_parse_with_description(void **state) "# This is a test\n" "\n" "bola\n"; - sb_error_t *err = NULL; + blogc_error_t *err = NULL; sb_trie_t *source = blogc_source_parse(a, strlen(a), &err); assert_null(err); assert_non_null(source); |