--- mtd-utils-1.5.0.orig/lib/libfec.c 2012-05-07 09:19:39.000000000 +0200 +++ mtd-utils-1.5.0/lib/libfec.c 2014-03-30 15:49:26.000000000 +0200 @@ -61,8 +61,6 @@ struct timeval { }; #define gettimeofday(x, dummy) { (x)->ticks = clock() ; } #define DIFF_T(a,b) (1+ 1000000*(a.ticks - b.ticks) / CLOCKS_PER_SEC ) -typedef unsigned long u_long ; -typedef unsigned short u_short ; #else /* typically, unix systems */ #include #define DIFF_T(a,b) \ @@ -625,7 +623,7 @@ init_fec(void) #define FEC_MAGIC 0xFECC0DEC struct fec_parms { - u_long magic ; + unsigned long magic ; int k, n ; /* parameters of the code */ gf *enc_matrix ; } ;