CVS commit by raabe: - warnings -= 2 M +2 -2 makecrc.cpp 1.4 --- kdeutils/klaptopdaemon/makecrc.cpp #1.3:1.4 @@ -32,6 +32,6 @@ int main(int, char**) printf("#ifndef _CRCRESULT_H_\n"); printf("#define _CRCRESULT_H_\n"); - printf("static unsigned long file_len = 0x%x;\n", len); - printf("static unsigned long file_crc = 0x%x;\n", crc); + printf("static unsigned long file_len = 0x%lx;\n", len); + printf("static unsigned long file_crc = 0x%lx;\n", crc); printf("#endif\n"); return(0);