Some file list updates (#398069, Owen Taylor)

2007-01-19  Matthias Clasen  <mclasen@redhat.com>

        Some file list updates (#398069, Owen Taylor)

        * docs/Changes-2.0.txt
        * docs/reference/README.cvs-commits
        * glib.spec.in: Remove obsolete files

        * tests/Makefile.am:
        * glib/libcharset/Makefile.am:
        * gobject/Makefile.am:
        * Makefile.am: Add some missing files to EXTRA_DIST

        * tests/timeloop-basic.c: Make it build
        * HACKING: Small updates


svn path=/trunk/; revision=5302
This commit is contained in:
Matthias Clasen
2007-01-19 15:50:30 +00:00
committed by Matthias Clasen
parent 28dc240ebf
commit 912027f0df
10 changed files with 35 additions and 207 deletions

View File

@@ -33,8 +33,8 @@ my_pipe (int *fds)
int
read_all (int fd, char *buf, int len)
{
gsize bytes_read = 0;
gssize count;
size_t bytes_read = 0;
ssize_t count;
while (bytes_read < len)
{
@@ -56,8 +56,8 @@ read_all (int fd, char *buf, int len)
int
write_all (int fd, char *buf, int len)
{
gsize bytes_written = 0;
gssize count;
size_t bytes_written = 0;
ssize_t count;
while (bytes_written < len)
{