Number of sources can't very well be negative...
authorPanu Matilainen <pmatilai@redhat.com>
Tue, 17 Jun 2008 13:11:49 +0000 (16:11 +0300)
committerPanu Matilainen <pmatilai@redhat.com>
Tue, 17 Jun 2008 13:11:49 +0000 (16:11 +0300)
- also happens to avoid compiler whining about differing signedness

build/rpmspec.h

index 31a6087..5e018d1 100644 (file)
@@ -40,7 +40,7 @@ struct Source {
     char * fullSource;
     char * source;     /* Pointer into fullSource */
     int flags;
-    int num;
+    unsigned int num;
 struct Source * next;
 };