Changes in uspace/srv/audio/hound/hound.c [be12474:8a637a4] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/audio/hound/hound.c
rbe12474 r8a637a4 267 267 if (dev->id == id) { 268 268 log_debug("Device with id %zu is already present", id); 269 return EEXIST S;269 return EEXIST; 270 270 } 271 271 } … … 274 274 if (dev) { 275 275 log_debug("Device with name %s is already present", name); 276 return EEXIST S;276 return EEXIST; 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 S;343 return EEXIST; 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 S;367 return EEXIST; 368 368 } 369 369 list_append(&sink->link, &hound->sinks);
Note:
See TracChangeset
for help on using the changeset viewer.