Skip to content

Commit

Permalink
webOS foreign window code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mariotaku committed Apr 7, 2024
1 parent 00bc193 commit 1533d66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/wayland/SDL_waylandwebos_foreign.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const char *WaylandWebOS_CreateExportedWindow(_THIS, SDL_webOSExportedWindowType

if (data->webos_foreign_table->windows != NULL) {
webos_foreign_window *cur = data->webos_foreign_table->windows;
while (cur != NULL && cur->next != NULL) {
while (cur->next != NULL) {
cur = cur->next;
}
cur->next = foreign_window;
Expand Down

0 comments on commit 1533d66

Please sign in to comment.