Show
Ignore:
Timestamp:
05/05/08 12:14:22 (7 months ago)
Author:
mwhitworth
Message:

Remove debug printfs.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/branches/hybrid/kernel/module.c

    r416 r421  
    6363        while (currSym != ((struct KernelSymbol*)symtable_end)) 
    6464        { 
    65                 printf("%s: %s\n", name, currSym->name); 
    66  
    6765                if (!strcmp(currSym->name, name)) 
    6866                        return currSym->addr; 
     
    8078        int i; 
    8179        struct ElfReloc* reloc; 
    82  
    83         printf("%u\n", module->relSize); 
    8480 
    8581        for (i=0; i<module->relSize/(sizeof(struct ElfReloc)); i++)