]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Style cleanup.
authorMika Lindqvist <postmaster@raasu.org>
Thu, 7 May 2015 16:29:27 +0000 (19:29 +0300)
committerHans Kristian Rosbach <hk-git@circlestorm.org>
Sat, 23 May 2015 19:38:47 +0000 (21:38 +0200)
Makefile.in
deflate.c

index fadf353c0b02beb9a871c3f0da7ffcb43d8d25f6..17c50b70e0bf11fb64ef1bcfbd7ccdbf9e066c64 100644 (file)
@@ -94,10 +94,10 @@ $(ARCHDIR)/%.o: $(SRCDIR)/$(ARCHDIR)/%.c
 $(ARCHDIR)/%.lo: $(SRCDIR)/$(ARCHDIR)/%.c
        $(MAKE) -C $(ARCHDIR) $(notdir $@)
 
-%.o : $(ARCHDIR)/%.o
+%.o: $(ARCHDIR)/%.o
        -cp $< $@
 
-%.lo : $(ARCHDIR)/%.lo
+%.lo: $(ARCHDIR)/%.lo
        -cp $< $@
 
 test: all teststatic testshared
index 6dfdfa06276c5ae07addea1f871101922c57a0d6..96e11fdfc39b57ba07e523dca41e38d3a1e206ba 100644 (file)
--- a/deflate.c
+++ b/deflate.c
@@ -1225,7 +1225,7 @@ local void fill_window_c(deflate_state *s)
              *       variable to avoid unncessary zero-extension.
              */
             {
-                unsigned int i; 
+                unsigned int i;
                 Pos *q = p - n;
                 for (i = 0; i < n; i++) {
                     Pos m = *q;
@@ -1248,7 +1248,7 @@ local void fill_window_c(deflate_state *s)
             } while (--n);
 #else
             {
-                unsigned int i; 
+                unsigned int i;
                 Pos *q = p - n;
                 for (i = 0; i < n; i++) {
                     Pos m = *q;