]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix whitespace issues
authorNick Mathewson <nickm@torproject.org>
Wed, 13 Aug 2014 14:42:20 +0000 (10:42 -0400)
committerNick Mathewson <nickm@torproject.org>
Wed, 13 Aug 2014 14:42:20 +0000 (10:42 -0400)
src/common/container.c
src/common/util.c

index 9bbb9730c6ddc861d768f8de71b079a0fa53fc8a..54f041bac76b3b4b005276ab36cb013b9d5d8a7a 100644 (file)
@@ -78,7 +78,7 @@ smartlist_ensure_capacity(smartlist_t *sl, int size)
     }
     sl->capacity = higher;
     sl->list = tor_reallocarray(sl->list, sizeof(void *),
-                               ((size_t)sl->capacity));
+                                ((size_t)sl->capacity));
   }
 }
 
index d064aceae096e082e23f4018bd2965ed0363e4d2..4029512978b49f8578e76e91315918003cd36469 100644 (file)
@@ -3393,7 +3393,7 @@ format_win_cmdline_argument(const char *arg)
 
   /* Allocate space for argument, quotes (if needed), and terminator */
   formatted_arg = tor_calloc(sizeof(char),
-                             (smartlist_len(arg_chars) + (need_quotes ? 2 : 0) + 1));
+                    (smartlist_len(arg_chars) + (need_quotes ? 2 : 0) + 1));
 
   /* Add leading quote */
   i=0;