diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2008-02-04 11:27:00 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2008-02-04 11:27:00 +0200 |
commit | e886043a1027fabf975f5e6542437e412a137e67 (patch) | |
tree | e393703802e01c444fac13b4a7d18297567b3bd3 /lib/rpmcli.h | |
parent | f53c32337238b84bb2c555ca12cdc07f6a963361 (diff) | |
download | librpm-tizen-e886043a1027fabf975f5e6542437e412a137e67.tar.gz librpm-tizen-e886043a1027fabf975f5e6542437e412a137e67.tar.bz2 librpm-tizen-e886043a1027fabf975f5e6542437e412a137e67.zip |
Add rpm_off_t type for file size types, use where spotted
- preliminaries for bumping up the max size, use rpm-specific type
as off_t size varies, header data needs fixed size
Diffstat (limited to 'lib/rpmcli.h')
-rw-r--r-- | lib/rpmcli.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rpmcli.h b/lib/rpmcli.h index 64700e759..425fde0ff 100644 --- a/lib/rpmcli.h +++ b/lib/rpmcli.h @@ -470,8 +470,8 @@ extern int rpmcliProgressTotal; */ void * rpmShowProgress(const void * arg, const rpmCallbackType what, - const unsigned long amount, - const unsigned long total, + const rpm_off_t amount, + const rpm_off_t total, fnpyKey key, void * data); |