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/signature.h | |
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/signature.h')
-rw-r--r-- | lib/signature.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/signature.h b/lib/signature.h index be869480f..ce2fed7f6 100644 --- a/lib/signature.h +++ b/lib/signature.h @@ -65,7 +65,7 @@ int rpmWriteSignature(FD_t fd, Header h); * @return 0 on success, -1 on failure */ int rpmAddSignature(Header sigh, const char * file, - int_32 sigTag, const char * passPhrase); + int32_t sigTag, const char * passPhrase); /******************************************************************/ |