mtd/lib/zlib_deflate deflate.c, 1.1, 1.2 deftree.c, 1.1, 1.2 defutil.h, 1.1, 1.2

gleixner at infradead.org gleixner at infradead.org
Mon Nov 7 06:15:47 EST 2005


Update of /home/cvs/mtd/lib/zlib_deflate
In directory phoenix.infradead.org:/tmp/cvs-serv29274/lib/zlib_deflate

Modified Files:
	deflate.c deftree.c defutil.h 
Log Message:
[MTD / JFFS2] Clean up trailing white spaces


Index: deflate.c
===================================================================
RCS file: /home/cvs/mtd/lib/zlib_deflate/deflate.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- deflate.c	3 Mar 2002 15:43:34 -0000	1.1
+++ deflate.c	7 Nov 2005 11:15:00 -0000	1.2
@@ -1,7 +1,7 @@
 /* +++ deflate.c */
 /* deflate.c -- compress data using the deflation algorithm
  * Copyright (C) 1995-1996 Jean-loup Gailly.
- * For conditions of distribution and use, see copyright notice in zlib.h 
+ * For conditions of distribution and use, see copyright notice in zlib.h
  */
 
 /*
@@ -301,7 +301,7 @@
     z_streamp strm;
 {
     deflate_state *s;
-    
+
     if (strm == Z_NULL || strm->state == Z_NULL)
         return Z_STREAM_ERROR;
 
@@ -373,7 +373,7 @@
 {
     put_byte(s, (Byte)(b >> 8));
     put_byte(s, (Byte)(b & 0xff));
-}   
+}
 
 /* =========================================================================
  * Flush as much pending output as possible. All deflate() output goes
@@ -1097,7 +1097,7 @@
                      * always MIN_MATCH bytes ahead.
                      */
                 } while (--s->match_length != 0);
-                s->strstart++; 
+                s->strstart++;
             } else {
                 s->strstart += s->match_length;
                 s->match_length = 0;
@@ -1115,7 +1115,7 @@
             Tracevv((stderr,"%c", s->window[s->strstart]));
             bflush = zlib_tr_tally (s, 0, s->window[s->strstart]);
             s->lookahead--;
-            s->strstart++; 
+            s->strstart++;
         }
         if (bflush) FLUSH_BLOCK(s, 0);
     }

Index: deftree.c
===================================================================
RCS file: /home/cvs/mtd/lib/zlib_deflate/deftree.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- deftree.c	3 Mar 2002 15:43:34 -0000	1.1
+++ deftree.c	7 Nov 2005 11:15:01 -0000	1.2
@@ -1,7 +1,7 @@
 /* +++ trees.c */
 /* trees.c -- output deflated data using Huffman coding
  * Copyright (C) 1995-1996 Jean-loup Gailly
- * For conditions of distribution and use, see copyright notice in zlib.h 
+ * For conditions of distribution and use, see copyright notice in zlib.h
  */
 
 /*
@@ -1080,7 +1080,7 @@
     s->last_eob_len = 8; /* enough lookahead for inflate */
 
     if (header) {
-        put_short(s, (ush)len);   
+        put_short(s, (ush)len);
         put_short(s, (ush)~len);
 #ifdef DEBUG_ZLIB
         s->bits_sent += 2*16;

Index: defutil.h
===================================================================
RCS file: /home/cvs/mtd/lib/zlib_deflate/defutil.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- defutil.h	3 Mar 2002 15:43:34 -0000	1.1
+++ defutil.h	7 Nov 2005 11:15:02 -0000	1.2
@@ -1,11 +1,11 @@
 
 
 
-#define Assert(err, str) 
-#define Trace(dummy) 
-#define Tracev(dummy) 
-#define Tracecv(err, dummy) 
-#define Tracevv(dummy) 
+#define Assert(err, str)
+#define Trace(dummy)
+#define Tracev(dummy)
+#define Tracecv(err, dummy)
+#define Tracevv(dummy)
 
 
 





More information about the linux-mtd-cvs mailing list