Fix some wide lines

This commit is contained in:
Nick Mathewson
2013-04-18 10:30:14 -04:00
parent b00a6211c5
commit cd1cdae0fa
3 changed files with 8 additions and 7 deletions
+2 -1
View File
@@ -108,7 +108,8 @@ setup_directory(void)
r = mkdir(temp_dir);
}
#else
tor_snprintf(temp_dir, sizeof(temp_dir), "/tmp/tor_test_%d_%s", (int) getpid(), rnd32);
tor_snprintf(temp_dir, sizeof(temp_dir), "/tmp/tor_test_%d_%s",
(int) getpid(), rnd32);
r = mkdir(temp_dir, 0700);
#endif
if (r) {