Changeset 36fcd0a in mainline for uspace/srv/net/inetsrv/addrobj.c


Ignore:
Timestamp:
2024-09-18T10:34:16Z (6 months 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

File:
1 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;
Note: See TracChangeset for help on using the changeset viewer.