mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-27 17:52:58 +02:00
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:
committed by
Matthias Clasen
parent
28dc240ebf
commit
912027f0df
@@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user