diff options
author | David Robillard <d@drobilla.net> | 2019-11-03 20:51:45 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-11-03 20:51:45 +0100 |
commit | fa1ee34bd8538a49bae9e456ac808bffcee8a150 (patch) | |
tree | af46f3dfccfe683664f1ea63caeb1c392be0207c /test | |
parent | a2a52a92fa8760f6409e21f103d0160ddf7b7a8a (diff) | |
download | pugl-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.c | 2 |
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; } |