Changeset 0f269c2 in mainline


Ignore:
Timestamp:
2008-06-03T14:46:06Z (17 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2b8b0ca
Parents:
c70d693
Message:

proper printf formatting & coding style

Location:
kernel/generic/src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/cpu/cpu.c

    rc70d693 r0f269c2  
    105105                        cpu_print_report(&cpus[i]);
    106106                else
    107                         printf("cpu%d: not active\n", i);
     107                        printf("cpu%u: not active\n", i);
    108108        }
    109109}
  • kernel/generic/src/lib/func.c

    rc70d693 r0f269c2  
    7474#endif     
    7575        if (CPU)
    76                 printf("cpu%d: halted\n", CPU->id);
     76                printf("cpu%u: halted\n", CPU->id);
    7777        else
    7878                printf("cpu: halted\n");
  • kernel/generic/src/lib/memstr.c

    rc70d693 r0f269c2  
    6868        } else {
    6969       
    70                 for (i = 0; i < cnt/sizeof(unative_t); i++)
     70                for (i = 0; i < cnt / sizeof(unative_t); i++)
    7171                        ((unative_t *) dst)[i] = ((unative_t *) src)[i];
    7272               
    73                 for (j = 0; j < cnt%sizeof(unative_t); j++)
     73                for (j = 0; j < cnt % sizeof(unative_t); j++)
    7474                        ((uint8_t *)(((unative_t *) dst) + i))[j] = ((uint8_t *)(((unative_t *) src) + i))[j];
    7575        }
  • kernel/generic/src/lib/objc_ext.c

    rc70d693 r0f269c2  
    102102void __assert_fail(const char *assertion, const char *file, unsigned int line, const char *function)
    103103{
    104         panic("Run-time assertion (%s:%d:%s) failed (%s)", file, line, function ? function : "", assertion);
     104        panic("Run-time assertion (%s:%u:%s) failed (%s)", file, line, function ? function : "", assertion);
    105105}
    106106
  • kernel/generic/src/sysinfo/sysinfo.c

    rc70d693 r0f269c2  
    178178       
    179179        if (item != NULL) { /* If in subsystem, unable to create or return so unable to set */
    180                 item->val.val=val;                   
     180                item->val.val = val;                   
    181181                item->val_type = SYSINFO_VAL_VAL;
    182182        }
     
    193193       
    194194        if (item != NULL) { /* If in subsystem, unable to create or return so  unable to set */
    195                 item->val.fn=fn;                   
     195                item->val.fn = fn;                   
    196196                item->val_type = SYSINFO_VAL_FUNCTION;
    197197        }
     
    245245                }
    246246               
    247                 printf("%s    %s val:%d(%x) sub:%s\n", root->name, vtype, val,
     247                printf("%s    %s val:%" PRIun "(%" PRIxn ") sub:%s\n", root->name, vtype, val,
    248248                        val, (root->subinfo_type == SYSINFO_SUBINFO_NONE) ?
    249249                        "NON" : ((root->subinfo_type == SYSINFO_SUBINFO_TABLE) ?
Note: See TracChangeset for help on using the changeset viewer.