[Fakeroot-commits] [SCM] fakeroot branch, upstream, updated. debian/1.14.3-200-gb232f8a

Clint Adams schizo at debian.org
Tue Aug 23 13:05:30 UTC 2011


The following commit has been merged in the upstream branch:
commit 016640b4da1a5d59fd71bc5d0c825a9fa402728a
Author: Clint Adams <schizo at debian.org>
Date:   Thu Oct 7 21:50:02 2004 +0000

    faked.c: a few more signedness cleanups.
    
    git-archimport-id: fakeroot at packages.debian.org--fakeroot/fakeroot--main--0.0--patch-34

diff --git a/debian/changelog b/debian/changelog
index 325043c..88903ef 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+fakeroot (1.1.2) unstable; urgency=low
+
+  * faked.c: a few more signedness cleanups.
+
+ -- Clint Adams <schizo at debian.org>  Thu,  7 Oct 2004 17:46:37 -0400
+
 fakeroot (1.1.1) unstable; urgency=low
 
   * faked.c, libfakeroot.c: address some signedness issues which
diff --git a/faked.c b/faked.c
index 2f69f46..5aa02ce 100644
--- a/faked.c
+++ b/faked.c
@@ -756,7 +756,8 @@ void get_msg(const int listen_sd)
     if(r!=-1)
 #else /* FAKEROOT_FAKENET */
   while (1) {
-    unsigned int maxfd, count, i;
+    int count, maxfd;
+    unsigned int i;
 
     FD_ZERO(&readfds);
 

-- 
fakeroot



More information about the Fakeroot-commits mailing list