summaryrefslogtreecommitdiff
path: root/src/ivy.c
diff options
context:
space:
mode:
authorbustico2008-05-19 16:49:46 +0000
committerbustico2008-05-19 16:49:46 +0000
commit24264ef88ba6eda574207fde74877eb589062d6d (patch)
tree52efe89755cb2d540b89ce1ea249e1e16d703ddc /src/ivy.c
parent04b93464d970f6345736676a2265e83329c56ad9 (diff)
downloadivy-c-24264ef88ba6eda574207fde74877eb589062d6d.zip
ivy-c-24264ef88ba6eda574207fde74877eb589062d6d.tar.gz
ivy-c-24264ef88ba6eda574207fde74877eb589062d6d.tar.bz2
ivy-c-24264ef88ba6eda574207fde74877eb589062d6d.tar.xz
* fix some warning raised by visual studio compiler
* remove macro definition in tools Makefile that are exported by main Makefile
Diffstat (limited to 'src/ivy.c')
-rw-r--r--src/ivy.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ivy.c b/src/ivy.c
index a873762..2dd3a90 100644
--- a/src/ivy.c
+++ b/src/ivy.c
@@ -1066,9 +1066,11 @@ IvyChangeMsg (MsgRcvPtr msg, const char *fmt_regex, ... )
int IvySendMsg(const char *fmt, ...) /* version dictionnaire */
{
int match_count = 0;
- MsgSndDictPtr msgSendDict;
- static IvyBuffer buffer = { NULL, 0, 0}; /* Use static mem to eliminate multiple call to malloc /free */
+#ifndef OPENMP
+ MsgSndDictPtr msgSendDict;
+#endif
+ static IvyBuffer buffer = { NULL, 0, 0}; /* Use static mem to eliminate multiple call to malloc /free */
va_list ap;
/* construction du buffer message à partir du format et des arguments */