Change a <sys/errno.h> include to <errno.h>

Some systems (e.g. Alpine) may warn that that the former is incorrect.
This commit is contained in:
Jon Siwek 2021-03-30 16:03:14 -07:00
parent 75ebc5bca1
commit a15d726f95

View file

@ -1,6 +1,6 @@
#include "zeek/ScannedFile.h" #include "zeek/ScannedFile.h"
#include <sys/errno.h> #include <errno.h>
#include <limits.h> // for PATH_MAX #include <limits.h> // for PATH_MAX
#include "zeek/DebugLogger.h" #include "zeek/DebugLogger.h"