diff options
author | David Robillard <d@drobilla.net> | 2019-08-01 07:42:52 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-08-01 07:42:52 +0200 |
commit | 2359dafa529216a3b3a327edb9e4b5daf92985f7 (patch) | |
tree | 4208e6e97bf4b4daf1e8dec03390e322367a4e2d /test/pugl_test.c | |
parent | a865ca522f56feb5573f26d668270ce3b721e382 (diff) | |
download | pugl-2359dafa529216a3b3a327edb9e4b5daf92985f7.tar.gz pugl-2359dafa529216a3b3a327edb9e4b5daf92985f7.tar.bz2 pugl-2359dafa529216a3b3a327edb9e4b5daf92985f7.zip |
Add missing string termination
Diffstat (limited to 'test/pugl_test.c')
-rw-r--r-- | test/pugl_test.c | 2 |
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; } |