Changeset 1d03e86 in mainline for uspace/srv/net/tcp/service.c


Ignore:
Timestamp:
2015-08-31T18:09:02Z (9 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
bae1e1f
Parents:
cb0ca35
Message:

Fix formatting strings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/tcp/service.c

    rcb0ca35 r1d03e86  
    11361136        n = list_count(&client->cconn);
    11371137        if (n != 0) {
    1138                 log_msg(LOG_DEFAULT, LVL_WARN, "Client with %zu active "
     1138                log_msg(LOG_DEFAULT, LVL_WARN, "Client with %lu active "
    11391139                    "connections closed session", n);
    11401140
     
    11501150        n = list_count(&client->clst);
    11511151        if (n != 0) {
    1152                 log_msg(LOG_DEFAULT, LVL_WARN, "Client with %zu active "
     1152                log_msg(LOG_DEFAULT, LVL_WARN, "Client with %lu active "
    11531153                    "listeners closed session", n);
    11541154                /* XXX Destroy listeners */
Note: See TracChangeset for help on using the changeset viewer.