Changeset 585af0d in mainline


Ignore:
Timestamp:
2013-04-03T17:32:07Z (11 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a94de68
Parents:
eafc7b2
Message:

hound: remove debuging output

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/audio/hound/hound.c

    reafc7b2 r585af0d  
    308308{
    309309        assert(hound);
    310         log_verbose("Hound list sinks: %p %p %p", hound, list, size);
    311310        if (!list || !size)
    312311                return EINVAL;
     
    315314        const size_t count = list_count(&hound->sinks);
    316315        if (count == 0) {
    317                 printf("ZERO SINKS!\n");
    318316                *list = NULL;
    319317                *size = 0;
     
    333331                *size = count;
    334332                *list = names;
    335                 printf("%zu SINKS %s!\n", count, names[0]);
    336333        } else {
    337334                for (size_t i = 0; i < count; ++i)
Note: See TracChangeset for help on using the changeset viewer.