aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPer Øyvind Karlsen <peroyvind@mandriva.org>2008-10-14 08:51:44 +0000
committerPer Øyvind Karlsen <peroyvind@mandriva.org>2008-10-14 08:51:44 +0000
commit8e67a40eca1bf1d3f72704e99b74c20dcfb77d38 (patch)
tree3e67ccd78bbc01ce338dd5c9e4a80926fbb5de85
parent9b1e86da147c226e37cac6969efe25b105e5d1da (diff)
downloadperl-URPM-8e67a40eca1bf1d3f72704e99b74c20dcfb77d38.tar
perl-URPM-8e67a40eca1bf1d3f72704e99b74c20dcfb77d38.tar.gz
perl-URPM-8e67a40eca1bf1d3f72704e99b74c20dcfb77d38.tar.bz2
perl-URPM-8e67a40eca1bf1d3f72704e99b74c20dcfb77d38.tar.xz
perl-URPM-8e67a40eca1bf1d3f72704e99b74c20dcfb77d38.zip
use rpmuint64_t rather than long long, we know that it should stay compatible:)
-rw-r--r--URPM.xs2
1 files changed, 1 insertions, 1 deletions
diff --git a/URPM.xs b/URPM.xs
index 659aad2..08cfca1 100644
--- a/URPM.xs
+++ b/URPM.xs
@@ -1326,7 +1326,7 @@ ts_nosignature(rpmts ts) {
}
#if RPM_VERSION_CODE >= RPM_VERSION(5,2,0)
-typedef unsigned long long rpmCallbackSize_t;
+typedef rpmuint64_t rpmCallbackSize_t;
#elif RPM_VERSION_CODE >= RPM_VERSION(4,4,5)
typedef uint64_t rpmCallbackSize_t;
#else