summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/config-win.h8
-rw-r--r--sql/log_event.cc2
2 files changed, 5 insertions, 5 deletions
diff --git a/include/config-win.h b/include/config-win.h
index 9663947683e..e1972051e67 100644
--- a/include/config-win.h
+++ b/include/config-win.h
@@ -278,10 +278,10 @@ inline double ulonglong2double(ulonglong value)
*((T)+4)=(uchar) (((A) >> 32)); }
#define int8store(T,A) *((ulonglong *) (T))= (ulonglong) (A)
-#define doubleget(V,M) { *((long *) &V) = *((long*) M); \
- *(((long *) &V)+1) = *(((long*) M)+1); }
-#define doublestore(T,V) { *((long *) T) = *((long*) &V); \
- *(((long *) T)+1) = *(((long*) &V)+1); }
+#define doubleget(V,M) do { *((long *) &V) = *((long*) M); \
+ *(((long *) &V)+1) = *(((long*) M)+1); } while(0)
+#define doublestore(T,V) do { *((long *) T) = *((long*) &V); \
+ *(((long *) T)+1) = *(((long*) &V)+1); } while(0)
#define float4get(V,M) { *((long *) &(V)) = *((long*) (M)); }
#define floatget(V,M) memcpy((byte*) &V,(byte*) (M),sizeof(float))
#define floatstore(T,V) memcpy((byte*)(T), (byte*)(&V), sizeof(float))
diff --git a/sql/log_event.cc b/sql/log_event.cc
index be4654bccd3..3f545df5776 100644
--- a/sql/log_event.cc
+++ b/sql/log_event.cc
@@ -2035,7 +2035,7 @@ Rotate_log_event::Rotate_log_event(THD* thd_arg,
llstr(pos_arg, buff), flags));
#endif
if (flags & DUP_NAME)
- new_log_ident= my_strdup_with_length(new_log_ident_arg,
+ new_log_ident= my_strdup_with_length((byte*) new_log_ident_arg,
ident_len,
MYF(MY_WME));
DBUG_VOID_RETURN;