Changeset 7a05d924 in mainline for uspace/srv/hid/display/main.c


Ignore:
Timestamp:
2022-10-20T08:05:06Z (19 months ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7cc30e9
Parents:
1766326
git-author:
Jiri Svoboda <jiri@…> (2022-10-19 18:04:42)
git-committer:
Jiri Svoboda <jiri@…> (2022-10-20 08:05:06)
Message:

Return correct number of windows from display server

But not the caption since the display server does not have it

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/display/main.c

    r1766326 r7a05d924  
    242242static void display_wndmgt_conn(ipc_call_t *icall, void *arg)
    243243{
     244        ds_display_t *disp = (ds_display_t *) arg;
    244245        wndmgt_srv_t srv;
    245246
     
    247248        wndmgt_srv_initialize(&srv);
    248249        srv.ops = &wndmgt_srv_ops;
    249         srv.arg = NULL; // XXX
     250        srv.arg = disp;
    250251
    251252        /* Handle connection */
Note: See TracChangeset for help on using the changeset viewer.