diff options
author | Florian Dold <florian.dold@gmail.com> | 2017-03-01 00:11:10 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2017-03-01 00:11:10 +0100 |
commit | d129b74cff8ef6126a9139bc1b22a5ca281e0d8c (patch) | |
tree | 00a824df4eaac9bb86be96e20537d2a07999d9a5 | |
parent | 2f3ffc2b053725a26be07763b02091439ae41005 (diff) |
missing newline
-rw-r--r-- | src/set/gnunet-service-set_union.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/set/gnunet-service-set_union.c b/src/set/gnunet-service-set_union.c index 9ca9961ef9..f6737ba650 100644 --- a/src/set/gnunet-service-set_union.c +++ b/src/set/gnunet-service-set_union.c @@ -892,7 +892,7 @@ handle_p2p_strata_estimator (void *cls, set_debug = getenv ("GNUNET_SET_BENCHMARK"); if ( (NULL != set_debug) && (0 == strcmp (set_debug, "1")) ) { - FILE *f = fopen ("set.log", "a"); + FILE *f = fopen ("set.log\n", "a"); fprintf (f, "%llu", (unsigned long long) diff); fclose (f); } |