Changeset e5bc912 in mainline for uspace/lib/hound/src/client.c


Ignore:
Timestamp:
2013-08-16T15:16:21Z (11 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ac8b096
Parents:
537620a8
Message:

Fix printf compile issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/hound/src/client.c

    r537620a8 re5bc912  
    3636#include <adt/list.h>
    3737#include <errno.h>
     38#include <inttypes.h>
    3839#include <loc.h>
    3940#include <str.h>
     
    103104        if (new_context) {
    104105                char *cont_name;
    105                 int ret = asprintf(&cont_name, "%llu:%s", task_get_id(), name);
     106                int ret = asprintf(&cont_name, "%" PRIu64 ":%s",
     107                    task_get_id(), name);
    106108                if (ret < 0) {
    107109                        free(new_context);
Note: See TracChangeset for help on using the changeset viewer.