diff options
author | snowdrop | 2004-11-05 11:58:01 +0000 |
---|---|---|
committer | snowdrop | 2004-11-05 11:58:01 +0000 |
commit | 138dbb259caa731d7aecc34d9360accd1fb7ab9d (patch) | |
tree | 4b5a184bc30251e540790cc4b4a0194d7f19865d /nanohttp/nanohttp-common.h | |
parent | c41114c1cf6172ca40a7a040121a7a4819da3969 (diff) | |
download | csoap-138dbb259caa731d7aecc34d9360accd1fb7ab9d.tar.gz csoap-138dbb259caa731d7aecc34d9360accd1fb7ab9d.tar.bz2 |
changed #ifndef MINGW to #ifndef __FUNCTION__
Diffstat (limited to 'nanohttp/nanohttp-common.h')
-rw-r--r-- | nanohttp/nanohttp-common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nanohttp/nanohttp-common.h b/nanohttp/nanohttp-common.h index 60cfbeb..88f8f67 100644 --- a/nanohttp/nanohttp-common.h +++ b/nanohttp/nanohttp-common.h @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: nanohttp-common.h,v 1.17 2004/11/02 23:09:26 snowdrop Exp $ + * $Id: nanohttp-common.h,v 1.18 2004/11/05 11:58:01 snowdrop Exp $ * * CSOAP Project: A http client/server library in C * Copyright (C) 2003-2004 Ferhat Ayaz @@ -480,7 +480,7 @@ void log_set_file(const char *filename); char *log_get_file(); #ifdef WIN32 - #ifndef __MINGW32__ + #ifndef __FUNCTION__ char *VisualC_funcname(const char* file, int line); /* not thread safe!*/ #define __FUNCTION__ VisualC_funcname(__FILE__, __LINE__) #endif |