mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-02 07:23:41 +02:00
/bin/ksh can't handle a for-loop with no arguments, so add a "." for when
2008-02-09 Matthias Clasen <mclasen@redhat.com> * Makefile.decl: /bin/ksh can't handle a for-loop with no arguments, so add a "." for when $(SUBDIRS) is empty. * glib/tests/option-context.c: * glib/tests/testing.c: * gthread/gthread-posix.c: * tets/testingbase64.c: * glib/gtester.c: * glib/gsequence.c: Portability fixes. (#515154) svn path=/trunk/; revision=6487
This commit is contained in:
committed by
Matthias Clasen
parent
634d64c9a1
commit
da0e7e81c1
@@ -190,7 +190,7 @@ g_output_stream_write (GOutputStream *stream,
|
||||
if (((gssize) count) < 0)
|
||||
{
|
||||
g_set_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
|
||||
_("Too large count value passed to %s"), __FUNCTION__);
|
||||
_("Too large count value passed to %s"), G_STRFUNC);
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -645,7 +645,7 @@ g_output_stream_write_async (GOutputStream *stream,
|
||||
user_data,
|
||||
G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
|
||||
_("Too large count value passed to %s"),
|
||||
__FUNCTION__);
|
||||
G_STRFUNC);
|
||||
return;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user