aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2020-09-08 11:22:13 +0200
committerThomas White <taw@physics.org>2020-09-08 16:16:48 +0200
commite15687963dd10cbb3a0cca0c4bfd08133b6d4814 (patch)
tree2d5b288d69b57228d305ddfc685dd11278f4e087
parent587e10e6550fd012756d7adac733ba928f92a7a9 (diff)
Remove "Command line:" in stream
This wasn't present in the old version, and it was missing a space anyway.
-rw-r--r--libcrystfel/src/stream.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libcrystfel/src/stream.c b/libcrystfel/src/stream.c
index 9e084f94..f022116b 100644
--- a/libcrystfel/src/stream.c
+++ b/libcrystfel/src/stream.c
@@ -1344,8 +1344,6 @@ void stream_write_commandline_args(Stream *st, int argc, char *argv[])
if ( argc == 0 ) return;
- fprintf(st->fh, "Command line:");
-
for ( i=0; i<argc; i++ ) {
if ( i > 0 ) fprintf(st->fh, " ");
fprintf(st->fh, "%s", argv[i]);