Changes in / [0464967:c212a03] in mainline
- Location:
- uspace
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/mkmfs/mkmfs.c
r0464967 rc212a03 348 348 unsigned int i; 349 349 uint8_t *itable_buf; 350 int rc = EOK;350 int rc; 351 351 352 352 long itable_off = sb->zbmap_blocks + sb->ibmap_blocks + 2; … … 633 633 const unsigned int zbmap_nblocks = sb->zbmap_blocks; 634 634 unsigned int i; 635 int rc = EOK;635 int rc; 636 636 637 637 ibmap_buf = malloc(ibmap_nblocks * sb->block_size); -
uspace/app/sbi/src/os/helenos.c
r0464967 rc212a03 155 155 size_t offset; 156 156 int i; 157 wchar_t c = 0;157 wchar_t c; 158 158 159 159 if (index < 0) -
uspace/app/sbi/src/run_expr.c
r0464967 rc212a03 2504 2504 elem_index = 0; 2505 2505 2506 assert(node != NULL);2507 2508 2506 i = 0; 2509 do{2507 while (node != NULL) { 2510 2508 if (i >= 1) { 2511 2509 printf("Error: Too many indices string.\n"); … … 2529 2527 node = list_next(args, node); 2530 2528 i += 1; 2531 } while (node != NULL);2529 } 2532 2530 2533 2531 if (i < 1) { -
uspace/drv/bus/pci/pciintel/pci.c
r0464967 rc212a03 293 293 const uint32_t conf_addr = CONF_ADDR(fun->bus, fun->dev, fun->fn, reg); 294 294 pci_bus_t *bus = pci_bus_from_fun(fun); 295 uint32_t val = 0;295 uint32_t val; 296 296 297 297 fibril_mutex_lock(&bus->conf_mutex); -
uspace/lib/bithenge/src/compound.c
r0464967 rc212a03 81 81 82 82 *out = in; 83 return EOK;83 return rc; 84 84 } 85 85 -
uspace/lib/ext4/src/extent.c
r0464967 rc212a03 375 375 uint32_t *fblock) 376 376 { 377 int rc = EOK;377 int rc; 378 378 /* Compute bound defined by i-node size */ 379 379 uint64_t inode_size = -
uspace/lib/trackmod/xm.c
r0464967 rc212a03 289 289 size_t instr_size; 290 290 size_t smp_size; 291 size_t smp_hdr_size = 0; /* GCC false alarm on uninitialized */291 size_t smp_hdr_size; 292 292 ssize_t nread; 293 293 uint8_t ltype;
Note:
See TracChangeset
for help on using the changeset viewer.