Changeset 03936831 in mainline for uspace/app/sbi/src/run_expr.c
- Timestamp:
- 2017-10-20T09:16:55Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1252e81
- Parents:
- fe1c48d (diff), 04efacc (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/run_expr.c
rfe1c48d r03936831 2504 2504 elem_index = 0; 2505 2505 2506 assert(node != NULL); 2507 2506 2508 i = 0; 2507 while (node != NULL){2509 do { 2508 2510 if (i >= 1) { 2509 2511 printf("Error: Too many indices string.\n"); … … 2527 2529 node = list_next(args, node); 2528 2530 i += 1; 2529 } 2531 } while (node != NULL); 2530 2532 2531 2533 if (i < 1) {
Note:
See TracChangeset
for help on using the changeset viewer.