summaryrefslogtreecommitdiff
path: root/gthread/gthread-win32.c
diff options
context:
space:
mode:
authorHans Breuer <hans@breuer.org>2008-02-17 12:49:12 +0000
committerHans Breuer <hans@src.gnome.org>2008-02-17 12:49:12 +0000
commit521e741d56080c21aa8c00923a4a94b3a8baa854 (patch)
tree35e6f144bc65d2f8e928a5314b73d73e5fc8e995 /gthread/gthread-win32.c
parenta2874f7ac3dbadba067b7b1708c9c515fd910712 (diff)
downloadglib-521e741d56080c21aa8c00923a4a94b3a8baa854.tar.gz
define CSIDL_MYPICTURES if not available use G_STRFUNC instead of compiler
2008-02-17 Hans Breuer <hans@breuer.org> * glib/gutils.c : define CSIDL_MYPICTURES if not available * gthread/gthread-win32.c : use G_STRFUNC instead of compiler specific __FUNCTION__ svn path=/trunk/; revision=6526
Diffstat (limited to 'gthread/gthread-win32.c')
-rw-r--r--gthread/gthread-win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gthread/gthread-win32.c b/gthread/gthread-win32.c
index f566e2858..465b20550 100644
--- a/gthread/gthread-win32.c
+++ b/gthread/gthread-win32.c
@@ -48,7 +48,7 @@
#define win32_check_for_error(what) G_STMT_START{ \
if (!(what)) \
g_error ("file %s: line %d (%s): error %s during %s", \
- __FILE__, __LINE__, __FUNCTION__, \
+ __FILE__, __LINE__, G_STRFUNC, \
g_win32_error_message (GetLastError ()), #what); \
}G_STMT_END