diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-11-10 10:18:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-10 10:18:43 -0500 |
commit | 5f3b27347ccd9d5d23cd8590ed3fa6cee252024f (patch) | |
tree | 3913dd3b2f2e17fa44d8bb9b8353eee860a6f750 /include/wlr/backend/session.h | |
parent | e6babc07a050262dc487ec665b042346b06e4916 (diff) | |
parent | 5be11a5c95457c6d4f6cd9720162f962286c2258 (diff) |
Merge pull request #404 from emolitor/CPP-Compatibility
Remove VLA from session.h
Diffstat (limited to 'include/wlr/backend/session.h')
-rw-r--r-- | include/wlr/backend/session.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/backend/session.h b/include/wlr/backend/session.h index 94002bc5..5c822ea9 100644 --- a/include/wlr/backend/session.h +++ b/include/wlr/backend/session.h @@ -79,6 +79,6 @@ void wlr_session_signal_add(struct wlr_session *session, int fd, bool wlr_session_change_vt(struct wlr_session *session, unsigned vt); size_t wlr_session_find_gpus(struct wlr_session *session, - size_t ret_len, int ret[static ret_len]); + size_t ret_len, int *ret); #endif |