diff options
Diffstat (limited to 'libcrystfel/src')
-rw-r--r-- | libcrystfel/src/stream.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libcrystfel/src/stream.c b/libcrystfel/src/stream.c index 4470d098..34c14573 100644 --- a/libcrystfel/src/stream.c +++ b/libcrystfel/src/stream.c @@ -42,6 +42,7 @@ #include <sys/stat.h> #include <fcntl.h> +#include "version.h" #include "cell.h" #include "cell-utils.h" #include "utils.h" @@ -821,7 +822,7 @@ Stream *open_stream_fd_for_write(int fd) fprintf(st->fh, "CrystFEL stream format %i.%i\n", st->major_version, st->minor_version); - + fprintf(st->fh, "Generated by CrystFEL "CRYSTFEL_VERSIONSTRING"\n"); return st; } |