aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-08-01 07:42:52 +0200
committerDavid Robillard <d@drobilla.net>2019-08-01 07:42:52 +0200
commit2359dafa529216a3b3a327edb9e4b5daf92985f7 (patch)
tree4208e6e97bf4b4daf1e8dec03390e322367a4e2d
parenta865ca522f56feb5573f26d668270ce3b721e382 (diff)
Add missing string termination
-rw-r--r--test/pugl_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pugl_test.c b/test/pugl_test.c
index af93caf..f276d8a 100644
--- a/test/pugl_test.c
+++ b/test/pugl_test.c
@@ -183,7 +183,7 @@ main(int argc, char** argv)
puglSetEventFunc(view, onEvent);
const uint8_t title[] = { 'P', 'u', 'g', 'l', ' ',
- 'P', 'r', 0xC3, 0xBC, 'f', 'u', 'n', 'g' };
+ 'P', 'r', 0xC3, 0xBC, 'f', 'u', 'n', 'g', 0 };
if (puglCreateWindow(view, (const char*)title)) {
return 1;
}