diff options
author | Jindrich Novy <jnovy@redhat.com> | 2008-07-01 12:43:47 +0200 |
---|---|---|
committer | Jindrich Novy <jnovy@redhat.com> | 2008-07-01 12:54:13 +0200 |
commit | e831de1040243bd33163a930137f1318ece4d61c (patch) | |
tree | bc74db1f20a21ac33b0217a13dca08e5c1af91f9 /build/rpmspec.h | |
parent | 206fd12122b7c2e0cf07768f639d78b5f1e4bd5e (diff) | |
download | rpm-e831de1040243bd33163a930137f1318ece4d61c.tar.gz rpm-e831de1040243bd33163a930137f1318ece4d61c.tar.bz2 rpm-e831de1040243bd33163a930137f1318ece4d61c.zip |
Use the same number types for SourceXX tags as returned by parseUnsignedNum()
Diffstat (limited to 'build/rpmspec.h')
-rw-r--r-- | build/rpmspec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/rpmspec.h b/build/rpmspec.h index 5e018d10c..f4226a444 100644 --- a/build/rpmspec.h +++ b/build/rpmspec.h @@ -40,7 +40,7 @@ struct Source { char * fullSource; char * source; /* Pointer into fullSource */ int flags; - unsigned int num; + uint32_t num; struct Source * next; }; |