summaryrefslogtreecommitdiff
path: root/gthread/gthread-posix.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2008-02-10 04:41:25 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2008-02-10 04:41:25 +0000
commitda0e7e81c16cba8d64014081487466a73a4c9506 (patch)
treee157f02681b0f00de769309b526bb7f6d5a1b152 /gthread/gthread-posix.c
parent634d64c9a1997089775985b682d7368ffe2da741 (diff)
downloadglib-da0e7e81c16cba8d64014081487466a73a4c9506.tar.gz
/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
Diffstat (limited to 'gthread/gthread-posix.c')
-rw-r--r--gthread/gthread-posix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gthread/gthread-posix.c b/gthread/gthread-posix.c
index 0891bf2bd..9188f843e 100644
--- a/gthread/gthread-posix.c
+++ b/gthread/gthread-posix.c
@@ -51,7 +51,7 @@
int error = (err); \
if (error) \
g_error ("file %s: line %d (%s): error '%s' during '%s'", \
- __FILE__, __LINE__, __FUNCTION__, \
+ __FILE__, __LINE__, G_STRFUNC, \
g_strerror (error), name); \
}G_STMT_END