Changeset 444a54e in mainline


Ignore:
Timestamp:
2010-02-07T10:33:17Z (15 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e067dcd
Parents:
dafa2d04
Message:

Fix missing percent sign in format string.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/taskmon/taskmon.c

    rdafa2d04 r444a54e  
    6666        }
    6767
    68         if (asprintf(&dump_fname, "/data/core" PRIuTASKID, taskid) < 0) {
     68        if (asprintf(&dump_fname, "/data/core%" PRIuTASKID, taskid) < 0) {
    6969                printf("Memory allocation failed.\n");
    7070                return;
Note: See TracChangeset for help on using the changeset viewer.