diff options
Diffstat (limited to 'pugl/detail/x11.c')
-rw-r--r-- | pugl/detail/x11.c | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/pugl/detail/x11.c b/pugl/detail/x11.c index 347876a..3531b12 100644 --- a/pugl/detail/x11.c +++ b/pugl/detail/x11.c @@ -952,13 +952,15 @@ puglSetClipboard(PuglView* const view, const PuglBackend* puglStubBackend(void) { - static const PuglBackend backend = {puglX11StubConfigure, - puglStubCreate, - puglStubDestroy, - puglStubEnter, - puglStubLeave, - puglStubResize, - puglStubGetContext}; + static const PuglBackend backend = { + puglX11StubConfigure, + puglStubCreate, + puglStubDestroy, + puglStubEnter, + puglStubLeave, + puglStubResize, + puglStubGetContext, + }; return &backend; } |