You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
591 B
22 lines
591 B
Include <string.h> for memset, to avoid an implicit function
|
|
declaration and build failures with future compilers.
|
|
|
|
Fixed upstream as part of:
|
|
|
|
r5451 | gmerlin | 2018-11-27 20:38:42 +0100 (Tue, 27 Nov 2018) | 2 lines
|
|
|
|
* Update
|
|
|
|
diff --git a/src/fill_test.c b/src/fill_test.c
|
|
index 1d362bea4af85745..6fd97dab9e192baa 100644
|
|
--- a/src/fill_test.c
|
|
+++ b/src/fill_test.c
|
|
@@ -23,6 +23,7 @@
|
|
//#include "colorspace.h" // Common routines
|
|
#include <stdio.h>
|
|
#include <png.h>
|
|
+#include <string.h>
|
|
|
|
static void
|
|
write_png(char * filename, gavl_video_format_t * format, gavl_video_frame_t * frame)
|