Changeset 077842c in mainline for kernel/test/synch/workq-test-core.h


Ignore:
Timestamp:
2018-09-07T15:46:41Z (6 years ago)
Author:
Jiří Zárevúcky <jiri.zarevucky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e9d2905
Parents:
78de83de
Message:

Convert atomic_t to atomic_size_t (1): remove PRIua macro

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/test/synch/workq-test-core.h

    r78de83de r077842c  
    191191        for (int i = 0; i < WAVES; ++i) {
    192192                if (atomic_get(&call_cnt[i]) == exp_call_cnt) {
    193                         TPRINTF("Ok: %" PRIua " calls in wave %d, as expected.\n",
     193                        TPRINTF("Ok: %zu calls in wave %d, as expected.\n",
    194194                            atomic_get(&call_cnt[i]), i);
    195195                } else {
    196196                        success = false;
    197                         TPRINTF("Error: %" PRIua " calls in wave %d, but %zu expected.\n",
     197                        TPRINTF("Error: %zu calls in wave %d, but %zu expected.\n",
    198198                            atomic_get(&call_cnt[i]), i, exp_call_cnt);
    199199                }
Note: See TracChangeset for help on using the changeset viewer.