Version v0.3.42 - -m Suppress miniz warnings in archive.c header include

This commit is contained in:
2025-12-27 11:51:10 -05:00
parent e126e30889
commit 81eded2995
3 changed files with 9 additions and 4 deletions

View File

@@ -11,7 +11,12 @@
#include <time.h>
#include "main.h"
#include "microtar/microtar.h"
// Suppress warnings from miniz header
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-function"
#include "miniz/miniz.h"
#pragma GCC diagnostic pop
////////////////////////////////////////////////////////////////////////////////
// DIRECTORY ARCHIVING FUNCTIONS

View File

@@ -23,7 +23,7 @@
#include <ctype.h>
// Version - Updated automatically by build.sh
#define OTP_VERSION "v0.3.40"
#define OTP_VERSION "v0.3.41"
// Constants
#define MAX_INPUT_SIZE 4096