Browse Source

fix tab/space in torgzip.h

svn:r2493
Nick Mathewson 19 years ago
parent
commit
100b10473a
1 changed files with 4 additions and 4 deletions
  1. 4 4
      src/common/torgzip.h

+ 4 - 4
src/common/torgzip.h

@@ -14,12 +14,12 @@ typedef enum { GZIP_METHOD=1, ZLIB_METHOD=2 } compress_method_t;
 
 int
 tor_gzip_compress(char **out, size_t *out_len,
-		  const char *in, size_t in_len,
-		  compress_method_t method);
+                  const char *in, size_t in_len,
+                  compress_method_t method);
 int
 tor_gzip_uncompress(char **out, size_t *out_len,
-		    const char *in, size_t in_len,
-		    compress_method_t method);
+                    const char *in, size_t in_len,
+                    compress_method_t method);
 
 int is_gzip_supported(void);