Changes in / [0464967:c212a03] in mainline


Ignore:
Location:
uspace
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/mkmfs/mkmfs.c

    r0464967 rc212a03  
    348348        unsigned int i;
    349349        uint8_t *itable_buf;
    350         int rc = EOK;
     350        int rc;
    351351
    352352        long itable_off = sb->zbmap_blocks + sb->ibmap_blocks + 2;
     
    633633        const unsigned int zbmap_nblocks = sb->zbmap_blocks;
    634634        unsigned int i;
    635         int rc = EOK;
     635        int rc;
    636636
    637637        ibmap_buf = malloc(ibmap_nblocks * sb->block_size);
  • uspace/app/sbi/src/os/helenos.c

    r0464967 rc212a03  
    155155        size_t offset;
    156156        int i;
    157         wchar_t c = 0;
     157        wchar_t c;
    158158
    159159        if (index < 0)
  • uspace/app/sbi/src/run_expr.c

    r0464967 rc212a03  
    25042504        elem_index = 0;
    25052505
    2506         assert(node != NULL);
    2507 
    25082506        i = 0;
    2509         do {
     2507        while (node != NULL) {
    25102508                if (i >= 1) {
    25112509                        printf("Error: Too many indices string.\n");
     
    25292527                node = list_next(args, node);
    25302528                i += 1;
    2531         } while (node != NULL);
     2529        }
    25322530
    25332531        if (i < 1) {
  • uspace/drv/bus/pci/pciintel/pci.c

    r0464967 rc212a03  
    293293        const uint32_t conf_addr = CONF_ADDR(fun->bus, fun->dev, fun->fn, reg);
    294294        pci_bus_t *bus = pci_bus_from_fun(fun);
    295         uint32_t val = 0;
     295        uint32_t val;
    296296       
    297297        fibril_mutex_lock(&bus->conf_mutex);
  • uspace/lib/bithenge/src/compound.c

    r0464967 rc212a03  
    8181
    8282        *out = in;
    83         return EOK;
     83        return rc;
    8484}
    8585
  • uspace/lib/ext4/src/extent.c

    r0464967 rc212a03  
    375375    uint32_t *fblock)
    376376{
    377         int rc = EOK;
     377        int rc;
    378378        /* Compute bound defined by i-node size */
    379379        uint64_t inode_size =
  • uspace/lib/trackmod/xm.c

    r0464967 rc212a03  
    289289        size_t instr_size;
    290290        size_t smp_size;
    291         size_t smp_hdr_size = 0;  /* GCC false alarm on uninitialized */
     291        size_t smp_hdr_size;
    292292        ssize_t nread;
    293293        uint8_t ltype;
Note: See TracChangeset for help on using the changeset viewer.