64bit time_t.

This commit is contained in:
ajacoutot
2025-09-17 16:37:35 +00:00
parent 684600f2c0
commit 6c3bc5da87
2 changed files with 15 additions and 1 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ COMMENT= CUPS bindings for Python
MODPY_DISTV= 2.0.4
DISTNAME= pycups-${MODPY_DISTV}
PKGNAME= ${DISTNAME:S/^py/py-/}
REVISION= 3
REVISION= 4
CATEGORIES= print
@@ -0,0 +1,14 @@
64bit time_t
Index: cupsconnection.c
--- cupsconnection.c.orig
+++ cupsconnection.c
@@ -3819,7 +3819,7 @@ Connection_getPPD3 (Connection *self, PyObject *args,
PyTuple_SetItem (ret, 2, obj);
- debugprintf ("<- Connection_getPPD3() = (%d,%ld,%s)\n",
+ debugprintf ("<- Connection_getPPD3() = (%d,%lld,%s)\n",
status, modtime, fname);
return ret;
}