Changeset df13836 in mainline for uspace/srv/audio/hound/hound_ctx.c


Ignore:
Timestamp:
2015-08-30T14:38:17Z (9 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
be12474
Parents:
616f5dd3
Message:

Use bool for boolean values, unsigned long for counting heap objects.

File:
1 edited

Legend:

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

    r616f5dd3 rdf13836  
    403403                return ENOMEM;
    404404        }
    405         log_verbose("CTX: %p: Mixing %u streams", ctx,
     405        log_verbose("CTX: %p: Mixing %lu streams", ctx,
    406406            list_count(&ctx->streams));
    407407        pcm_format_silence(buffer, size, &source->format);
     
    413413                        log_warning("Not enough data in stream buffer");
    414414        }
    415         log_verbose("CTX: %p. Pushing audio to %u connections", ctx,
     415        log_verbose("CTX: %p. Pushing audio to %lu connections", ctx,
    416416            list_count(&source->connections));
    417417        list_foreach(source->connections, source_link, connection_t, conn) {
Note: See TracChangeset for help on using the changeset viewer.