diff options
author | Ralf Corsépius <corsepiu@fedoraproject.org> | 2007-10-26 13:24:14 +0200 |
---|---|---|
committer | Ralf Corsépius <corsepiu@fedoraproject.org> | 2007-10-26 13:24:14 +0200 |
commit | bebeb89735f4927d33233d2c49e91919187f1c91 (patch) | |
tree | dab33f24de6f672de42e41af4787ceb8494a283c /lib/query.c | |
parent | bbce1581029dddbdcdd76a0b969fd8a8fe5614bf (diff) | |
download | librpm-tizen-bebeb89735f4927d33233d2c49e91919187f1c91.tar.gz librpm-tizen-bebeb89735f4927d33233d2c49e91919187f1c91.tar.bz2 librpm-tizen-bebeb89735f4927d33233d2c49e91919187f1c91.zip |
Eliminate [u|]int_[8|16|32]. Use c99 stdint.h types instead.
Diffstat (limited to 'lib/query.c')
-rw-r--r-- | lib/query.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/query.c b/lib/query.c index 79609fbe6..4c241ab77 100644 --- a/lib/query.c +++ b/lib/query.c @@ -37,7 +37,7 @@ static void printFileInfo(char * te, const char * name, char sizefield[15]; char ownerfield[8+1], groupfield[8+1]; char timefield[100]; - time_t when = mtime; /* important if sizeof(int_32) ! sizeof(time_t) */ + time_t when = mtime; /* important if sizeof(int32_t) ! sizeof(time_t) */ struct tm * tm; static time_t now; static struct tm nowtm; @@ -191,7 +191,7 @@ int showQueryPackage(QVA_t qva, rpmts ts, Header h) const char * fuser; const char * fgroup; const char * flink; - int_32 fnlink; + int32_t fnlink; fflags = rpmfiFFlags(fi); fmode = rpmfiFMode(fi); |