Browse Source

don't add a spurious newline before [truncated]

svn:r2282
Roger Dingledine 21 years ago
parent
commit
40f9f94794
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/common/log.c

+ 2 - 2
src/common/log.c

@@ -22,8 +22,8 @@
 #define snprintf _snprintf
 #endif
 
-#define TRUNCATED_STR "\n[truncated]"
-#define TRUNCATED_STR_LEN 12
+#define TRUNCATED_STR "[truncated]"
+#define TRUNCATED_STR_LEN 11
 
 /** Information for a single logfile; only used in log.c */
 typedef struct logfile_t {