diff options
author | Michael Schroeder <mls@suse.de> | 2012-03-28 16:16:11 +0200 |
---|---|---|
committer | Michael Schroeder <mls@suse.de> | 2012-03-28 16:16:11 +0200 |
commit | c36ef29531924b0a2ec37cdac57211dac32837b1 (patch) | |
tree | 1695a370783842ddd32e08aa7e9b4a88086bcfea /src/pool.h | |
parent | 7c177fd42e93f6290d910d0694b8179c45eb2fb0 (diff) | |
download | libsolv-c36ef29531924b0a2ec37cdac57211dac32837b1.tar.gz libsolv-c36ef29531924b0a2ec37cdac57211dac32837b1.tar.bz2 libsolv-c36ef29531924b0a2ec37cdac57211dac32837b1.zip |
- incompatible ABI change: switch num over to unsigned long long and store sizes in bytes, not kbytes
Diffstat (limited to 'src/pool.h')
-rw-r--r-- | src/pool.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -312,7 +312,7 @@ void pool_trivial_installable_noobsoletesmap(Pool *pool, Map *installedmap, Queu const char *pool_lookup_str(Pool *pool, Id entry, Id keyname); Id pool_lookup_id(Pool *pool, Id entry, Id keyname); -unsigned int pool_lookup_num(Pool *pool, Id entry, Id keyname, unsigned int notfound); +unsigned long long pool_lookup_num(Pool *pool, Id entry, Id keyname, unsigned long long notfound); int pool_lookup_void(Pool *pool, Id entry, Id keyname); const unsigned char *pool_lookup_bin_checksum(Pool *pool, Id entry, Id keyname, Id *typep); const char *pool_lookup_checksum(Pool *pool, Id entry, Id keyname, Id *typep); |