Changeset 78445be8 in mainline for uspace/srv/hid/display/window.c


Ignore:
Timestamp:
2020-06-24T22:48:37Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
de19d4a
Parents:
8630748
Message:

Log message strings should not have a newline at the end

File:
1 edited

Legend:

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

    r8630748 r78445be8  
    561561
    562562        log_msg(LOG_DEFAULT, LVL_DEBUG,
    563             "ds_window_post_pos_event type=%d pos=%d,%d\n", event->type,
     563            "ds_window_post_pos_event type=%d pos=%d,%d", event->type,
    564564            (int) event->hpos, (int) event->vpos);
    565565
     
    612612errno_t ds_window_post_focus_event(ds_window_t *wnd)
    613613{
    614         log_msg(LOG_DEFAULT, LVL_DEBUG, "ds_window_post_focus_event\n");
     614        log_msg(LOG_DEFAULT, LVL_DEBUG, "ds_window_post_focus_event");
    615615
    616616        return ds_client_post_focus_event(wnd->client, wnd);
     
    623623errno_t ds_window_post_unfocus_event(ds_window_t *wnd)
    624624{
    625         log_msg(LOG_DEFAULT, LVL_DEBUG, "ds_window_post_unfocus_event\n");
     625        log_msg(LOG_DEFAULT, LVL_DEBUG, "ds_window_post_unfocus_event");
    626626
    627627        return ds_client_post_unfocus_event(wnd->client, wnd);
Note: See TracChangeset for help on using the changeset viewer.