projects
/
platform
/
upstream
/
rpm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
61aa908
)
Number of sources can't very well be negative...
author
Panu Matilainen
<pmatilai@redhat.com>
Tue, 17 Jun 2008 13:11:49 +0000
(16:11 +0300)
committer
Panu 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
patch
|
blob
|
history
diff --git
a/build/rpmspec.h
b/build/rpmspec.h
index
31a6087
..
5e018d1
100644
(file)
--- a/
build/rpmspec.h
+++ b/
build/rpmspec.h
@@
-40,7
+40,7
@@
struct Source {
char * fullSource;
char * source; /* Pointer into fullSource */
int flags;
- int num;
+
unsigned
int num;
struct Source * next;
};