Browse Source

* Changed dumplots() max len to 100, this may break a lot of cosmetics...

svn: 2145
Bryan Drewery 21 years ago
parent
commit
5ef858cc7a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/dccutil.c

+ 1 - 1
src/dccutil.c

@@ -175,7 +175,7 @@ void dumplots(int idx, const char *prefix, char *data)
   }
 
   char *p = data, *q = NULL, *n = NULL, c = 0;
-  const size_t max_data_len = 500 - strlen(prefix);
+  const size_t max_data_len = 100 - strlen(prefix);
 
   while (strlen(p) > max_data_len) {
     q = p + max_data_len;