Changeset 207d5da in mainline
- Timestamp:
- 2017-09-22T07:21:53Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5c769d54
- Parents:
- 5e962ad
- Location:
- uspace
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/inet/inet.c
r5e962ad r207d5da 319 319 } 320 320 321 printf("\n"); 322 321 323 rc = EOK; 322 324 out: … … 392 394 } 393 395 396 printf("\n"); 397 394 398 rc = EOK; 395 399 out: … … 476 480 } 477 481 } 482 483 printf("\n"); 478 484 479 485 rc = EOK; -
uspace/lib/c/generic/io/table.c
r5e962ad r207d5da 165 165 } 166 166 167 return table_write_next_cell(table); 167 table->wcell = NULL; 168 return EOK; 168 169 } 169 170 … … 394 395 while (row != NULL) { 395 396 cell = table_row_cell_first(row); 397 if (cell == NULL) 398 break; 399 396 400 column = table_column_first(table); 397 401 firstc = true; 402 398 403 while (cell != NULL && cell->text != NULL) { 399 404 spacing = firstc ? table->metrics.margin_left : 1; … … 495 500 ++ep; 496 501 502 if (table->wcell == NULL) { 503 rc = table_write_next_cell(table); 504 if (rc != EOK) { 505 assert(rc == ENOMEM); 506 goto out; 507 } 508 } 509 497 510 rc = table_cell_extend(table->wcell, sp, ep - sp); 498 511 if (rc != EOK) {
Note:
See TracChangeset
for help on using the changeset viewer.