From 427331806315cf9b6db9d90ab15b5254e5131ffb Mon Sep 17 00:00:00 2001 From: tonton Th Date: Fri, 27 Dec 2019 16:51:10 +0100 Subject: [PATCH] added compilation date & time to grabvidseq --- v4l2/grabvidseq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v4l2/grabvidseq.c b/v4l2/grabvidseq.c index 6f76a22..d3690b5 100644 --- a/v4l2/grabvidseq.c +++ b/v4l2/grabvidseq.c @@ -150,7 +150,7 @@ while ((opt = getopt(argc, argv, "c:d:ghn:o:O:p:s:uv")) != -1) { } if (verbosity > 1) { - fprintf(stderr, "running %s pid=%d\n", argv[0], getpid()); + fprintf(stderr, "GrabVidSeq (%s %s) pid=%d\n", __DATE__, __TIME__, getpid()); fprintf(stderr, "grabing %d picz\n", nbre_capt); fprintf(stderr, "period is %.3f milliseconds\n", period/1e3); fprintf(stderr, "framesize is %dx%d\n", width, height);