From 2359dafa529216a3b3a327edb9e4b5daf92985f7 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 1 Aug 2019 07:42:52 +0200 Subject: Add missing string termination --- test/pugl_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') 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; } -- cgit v1.2.1