diff options
author | Stefano Brivio <sbrivio@redhat.com> | 2023-12-24 17:56:51 +0100 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2023-12-27 19:29:45 +0100 |
commit | 60925b8b4ed8c597329c6c4933069374e66642b3 (patch) | |
tree | 877f1659e070e29810739d5016356e7840db8c74 | |
parent | baf4e2c02861da71489d7b8fc6c944fe2e3b579a (diff) | |
download | passt-60925b8b4ed8c597329c6c4933069374e66642b3.tar passt-60925b8b4ed8c597329c6c4933069374e66642b3.tar.gz passt-60925b8b4ed8c597329c6c4933069374e66642b3.tar.bz2 passt-60925b8b4ed8c597329c6c4933069374e66642b3.tar.lz passt-60925b8b4ed8c597329c6c4933069374e66642b3.tar.xz passt-60925b8b4ed8c597329c6c4933069374e66642b3.tar.zst passt-60925b8b4ed8c597329c6c4933069374e66642b3.zip |
flow: Add missing include, stdio.h
Reported-by: lemmi <lemmi@nerd2nerd.org>
Link: https://github.com/void-linux/void-packages/actions/runs/7097192513/job/19316903568
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
-rw-r--r-- | flow.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -6,6 +6,7 @@ */ #include <stdint.h> +#include <stdio.h> #include <unistd.h> #include <string.h> |