]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Fix portability: Do not use linux/limits.h
authorOlliver Schinagl <oliver@schinagl.nl>
Sun, 18 Jun 2023 10:51:58 +0000 (12:51 +0200)
committerFlole998 <Flole998@users.noreply.github.com>
Wed, 21 Jun 2023 09:17:24 +0000 (11:17 +0200)
The header limits.h suffices, lets use that instead.

Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
src/config.c

index ab8b458cc7ff2391a86a3c253d3fdaa3ff83f5a1..6769de7a63a7c27f71ad4d11215fabda8c11ece8 100644 (file)
@@ -17,7 +17,7 @@
  */
 
 #include <ctype.h>
-#include <linux/limits.h>
+#include <limits.h>
 #include <stdio.h>
 #include <string.h>
 #include <sys/stat.h>