Changes in uspace/lib/usb/src/pipesio.c [2c2cbcf:fa0f53b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/pipesio.c
r2c2cbcf rfa0f53b 173 173 174 174 int rc; 175 rc = pipe_add_ref(pipe , false);175 rc = pipe_add_ref(pipe); 176 176 if (rc != EOK) { 177 177 return rc; … … 296 296 int rc; 297 297 298 rc = pipe_add_ref(pipe , false);298 rc = pipe_add_ref(pipe); 299 299 if (rc != EOK) { 300 300 return rc; … … 447 447 int rc; 448 448 449 rc = pipe_add_ref(pipe , false);449 rc = pipe_add_ref(pipe); 450 450 if (rc != EOK) { 451 451 return rc; … … 579 579 int rc; 580 580 581 rc = pipe_add_ref(pipe , false);581 rc = pipe_add_ref(pipe); 582 582 if (rc != EOK) { 583 583 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.