Changes in uspace/srv/audio/hound/hound.c [8a637a4:be12474] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/audio/hound/hound.c
r8a637a4 rbe12474 267 267 if (dev->id == id) { 268 268 log_debug("Device with id %zu is already present", id); 269 return EEXIST ;269 return EEXISTS; 270 270 } 271 271 } … … 274 274 if (dev) { 275 275 log_debug("Device with name %s is already present", name); 276 return EEXIST ;276 return EEXISTS; 277 277 } 278 278 … … 341 341 log_debug("Source by that name already exists"); 342 342 fibril_mutex_unlock(&hound->list_guard); 343 return EEXIST ;343 return EEXISTS; 344 344 } 345 345 list_append(&source->link, &hound->sources); … … 365 365 log_debug("Sink by that name already exists"); 366 366 fibril_mutex_unlock(&hound->list_guard); 367 return EEXIST ;367 return EEXISTS; 368 368 } 369 369 list_append(&sink->link, &hound->sinks);
Note:
See TracChangeset
for help on using the changeset viewer.