diff options
author | Nick Wellnhofer <wellnhofer@aevum.de> | 2014-11-22 17:23:37 +0100 |
---|---|---|
committer | Nick Wellnhofer <wellnhofer@aevum.de> | 2014-11-22 17:23:37 +0100 |
commit | b2dac901288a3431fdadd9bbefb7875596a13e4d (patch) | |
tree | 6f3a7497ed721eb2d5b24b810bb141b2a2a9878e /api_test | |
parent | c100b483db2a35d004288f128c0c27d9976fc9c9 (diff) |
Make parser accept a char*
Diffstat (limited to 'api_test')
-rw-r--r-- | api_test/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/api_test/main.c b/api_test/main.c index a946c1a..b3b5b5a 100644 --- a/api_test/main.c +++ b/api_test/main.c @@ -76,7 +76,7 @@ constructor(test_batch_runner *runner) static void accessors(test_batch_runner *runner) { - static const unsigned char markdown[] = + static const char markdown[] = "## Header\n" "\n" "* Item 1\n" @@ -445,7 +445,7 @@ render_html(test_batch_runner *runner) { char *html; - static const unsigned char markdown[] = + static const char markdown[] = "foo *bar*\n" "\n" "paragraph 2\n"; |