changeset 13272:4916b436d0bb

use correct macro to indentify MinGW * profiler.cc (profile_data_accumulator::query_time): Use __MINGW32__, not __MINGW__.
author John W. Eaton <jwe@octave.org>
date Tue, 04 Oct 2011 13:17:25 -0400
parents fba2cc36b762
children 58c4d02c8ba2
files src/profiler.cc
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/profiler.cc
+++ b/src/profiler.cc
@@ -386,7 +386,7 @@
 {
   octave_time now;
   // FIXME -- this should be removed at some point...  See bug 34210.
-#if defined (__CYGWIN__) || defined (__MINGW__)
+#if defined (__CYGWIN__) || defined (__MINGW32__)
   volatile
 #endif
     double dnow = now.double_value ();