Changeset 585af0d in mainline
- Timestamp:
- 2013-04-03T17:32:07Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a94de68
- Parents:
- eafc7b2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/audio/hound/hound.c
reafc7b2 r585af0d 308 308 { 309 309 assert(hound); 310 log_verbose("Hound list sinks: %p %p %p", hound, list, size);311 310 if (!list || !size) 312 311 return EINVAL; … … 315 314 const size_t count = list_count(&hound->sinks); 316 315 if (count == 0) { 317 printf("ZERO SINKS!\n");318 316 *list = NULL; 319 317 *size = 0; … … 333 331 *size = count; 334 332 *list = names; 335 printf("%zu SINKS %s!\n", count, names[0]);336 333 } else { 337 334 for (size_t i = 0; i < count; ++i)
Note:
See TracChangeset
for help on using the changeset viewer.