Changeset 36fcd0a in mainline


Ignore:
Timestamp:
2024-09-18T10:34:16Z (8 weeks ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
master
Children:
84cc190
Parents:
88739997
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2024-09-18 10:30:41)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2024-09-18 10:34:16)
Message:

Fix 32b build

Location:
uspace/srv/net/inetsrv
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/inetsrv/addrobj.c

    r88739997 r36fcd0a  
    428428        /* id */
    429429
    430         rv = asprintf(&str, "%lu", addr->id);
     430        rv = asprintf(&str, "%zu", addr->id);
    431431        if (rv < 0) {
    432432                str = NULL;
  • uspace/srv/net/inetsrv/sroute.c

    r88739997 r36fcd0a  
    324324        /* id */
    325325
    326         rv = asprintf(&str, "%lu", sroute->id);
     326        rv = asprintf(&str, "%zu", sroute->id);
    327327        if (rv < 0) {
    328328                str = NULL;
Note: See TracChangeset for help on using the changeset viewer.