Changeset 195b7b3 in mainline for uspace/srv/hid/display/client.c


Ignore:
Timestamp:
2020-06-22T15:25:48Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c8e1f93
Parents:
5271e4c
Message:

Clean up debug messages and logging

File:
1 edited

Legend:

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

    r5271e4c r195b7b3  
    128128 * @param id Window ID
    129129 */
    130 #include <stdio.h>
    131130ds_window_t *ds_client_find_window(ds_client_t *client, ds_wnd_id_t id)
    132131{
     
    134133
    135134        // TODO Make this faster
    136         printf("ds_client_find_window: id=0x%x\n", (unsigned) id);
    137135        wnd = ds_client_first_window(client);
    138136        while (wnd != NULL) {
    139                 printf("ds_client_find_window: wnd=%p wnd->id=0x%x\n", wnd,
    140                     (unsigned) wnd->id);
    141137                if (wnd->id == id)
    142138                        return wnd;
Note: See TracChangeset for help on using the changeset viewer.