From: Jindrich Novy Date: Tue, 1 Jul 2008 10:43:47 +0000 (+0200) Subject: Use the same number types for SourceXX tags as returned by parseUnsignedNum() X-Git-Tag: tznext/4.11.0.1.tizen20130304~3770 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e831de1040243bd33163a930137f1318ece4d61c;p=tools%2Flibrpm-tizen.git Use the same number types for SourceXX tags as returned by parseUnsignedNum() --- diff --git a/build/rpmspec.h b/build/rpmspec.h index 5e018d1..f4226a4 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; };