aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-11-03 20:51:45 +0100
committerDavid Robillard <d@drobilla.net>2019-11-03 20:51:45 +0100
commitfa1ee34bd8538a49bae9e456ac808bffcee8a150 (patch)
treeaf46f3dfccfe683664f1ea63caeb1c392be0207c /test
parenta2a52a92fa8760f6409e21f103d0160ddf7b7a8a (diff)
downloadpugl-fa1ee34bd8538a49bae9e456ac808bffcee8a150.tar.gz
pugl-fa1ee34bd8538a49bae9e456ac808bffcee8a150.tar.bz2
pugl-fa1ee34bd8538a49bae9e456ac808bffcee8a150.zip
Fix duplicate word in error message
Diffstat (limited to 'test')
-rw-r--r--test/pugl_gl3_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pugl_gl3_test.c b/test/pugl_gl3_test.c
index 2bcc8ec..8e77bc2 100644
--- a/test/pugl_gl3_test.c
+++ b/test/pugl_gl3_test.c
@@ -314,7 +314,7 @@ main(int argc, char** argv)
puglSetEventFunc(app.view, onEvent);
if (puglCreateWindow(app.view, "Pugl OpenGL 3")) {
- fprintf(stderr, "error: Failed to create window window\n");
+ fprintf(stderr, "error: Failed to create window\n");
return 1;
}