From kde-commits Thu Jan 20 12:11:57 2005 From: Frerich Raabe Date: Thu, 20 Jan 2005 12:11:57 +0000 To: kde-commits Subject: kdeutils/klaptopdaemon Message-Id: <20050120121157.0DC271CF36 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=110622317325659 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);