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.
php-pecl-rrd/SOURCES/rrd-build.patch

32 lines
927 B

From 7d36350f6398a2c4504c87db7128ef3ce47145d3 Mon Sep 17 00:00:00 2001
From: Remi Collet <remi@remirepo.net>
Date: Mon, 29 Jan 2024 14:12:23 +0100
Subject: [PATCH] Fix incompatible pointer types
---
rrd.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/rrd.c b/rrd.c
index 526f094..ab19b41 100644
--- a/rrd.c
+++ b/rrd.c
@@ -55,7 +55,7 @@ PHP_FUNCTION(rrd_fetch)
rrd_args *argv;
/* returned values if rrd_fetch doesn't fail */
time_t start, end;
- zend_ulong step,
+ unsigned long step,
ds_cnt; /* count of data sources */
char **ds_namv; /* list of data source names */
rrd_value_t *ds_data; /* all data from all sources */
@@ -396,7 +396,7 @@ PHP_FUNCTION(rrd_xport)
/* return values from rrd_xport */
int xxsize;
time_t start, end, time_index;
- zend_ulong step, outvar_count;
+ unsigned long step, outvar_count;
char **legend_v;
rrd_value_t *data, *data_ptr;
zval zv_data;