Changeset d6ff08a0 in mainline for uspace/srv/hid/rfb/rfb.c


Ignore:
Timestamp:
2015-05-14T06:19:23Z (10 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
683e584
Parents:
b99f6e2
Message:

Fix remcons and rfb.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/rfb/rfb.c

    rb99f6e2 rd6ff08a0  
    757757        int rc;
    758758       
     759        rc = tcp_create(&tcp);
     760        if (rc != EOK) {
     761                log_msg(LOG_DEFAULT, LVL_ERROR, "Error initializing TCP.");
     762                goto error;
     763        }
     764       
    759765        inet_ep_init(&ep);
    760766        ep.port = port;
     
    763769            &lst);
    764770        if (rc != EOK) {
    765                 log_msg(LOG_DEFAULT, LVL_ERROR, "Error creating listener.\n");
     771                log_msg(LOG_DEFAULT, LVL_ERROR, "Error creating listener.");
    766772                goto error;
    767773        }
Note: See TracChangeset for help on using the changeset viewer.