Changeset 22d990c in mainline for uspace/lib/gui/window.c


Ignore:
Timestamp:
2020-01-11T00:36:26Z (4 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
06599a1
Parents:
8a74512
Message:

Clean up code

Correcting order of includes. Remove unnecessary new lines. Removing
old function declaration. Typos.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/gui/window.c

    r8a74512 r22d990c  
    626626        async_sess_t *reg_sess =
    627627            loc_service_connect(reg_dsid, INTERFACE_COMPOSITOR, ipc_flags);
    628 
    629628        if (reg_sess == NULL) {
    630629                free(win);
     
    642641
    643642        win->osess = loc_service_connect(out_dsid, INTERFACE_COMPOSITOR, ipc_flags);
    644 
    645643        if (win->osess == NULL) {
    646644                free(win);
     
    649647
    650648        win->isess = loc_service_connect(in_dsid, INTERFACE_COMPOSITOR, ipc_flags);
    651 
    652649        if (win->isess == NULL) {
    653650                async_hangup(win->osess);
Note: See TracChangeset for help on using the changeset viewer.