Commit 39730102 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

user.exe16: Downgrade a couple MESSAGEs to WARNs.

parent 463f91dc
...@@ -882,14 +882,14 @@ LRESULT WINPROC_CallProc16To32A( winproc_callback_t callback, HWND16 hwnd, UINT1 ...@@ -882,14 +882,14 @@ LRESULT WINPROC_CallProc16To32A( winproc_callback_t callback, HWND16 hwnd, UINT1
case 0: case 0:
if (hi) if (hi)
{ {
MESSAGE("DDE_ACK: neither atom nor handle!!!\n"); WARN("DDE_ACK: neither atom nor handle!!!\n");
hi = 0; hi = 0;
} }
break; break;
case 1: case 1:
break; /* atom, nothing to do */ break; /* atom, nothing to do */
case 3: case 3:
MESSAGE("DDE_ACK: %lx both atom and handle... choosing handle\n", hi); WARN("DDE_ACK: %lx both atom and handle... choosing handle\n", hi);
/* fall through */ /* fall through */
case 2: case 2:
hi = convert_handle_16_to_32(hi, GMEM_DDESHARE); hi = convert_handle_16_to_32(hi, GMEM_DDESHARE);
...@@ -1262,14 +1262,14 @@ LRESULT WINPROC_CallProc32ATo16( winproc_callback16_t callback, HWND hwnd, UINT ...@@ -1262,14 +1262,14 @@ LRESULT WINPROC_CallProc32ATo16( winproc_callback16_t callback, HWND hwnd, UINT
case 0: case 0:
if (hi) if (hi)
{ {
MESSAGE("DDE_ACK: neither atom nor handle!!!\n"); WARN("DDE_ACK: neither atom nor handle!!!\n");
hi = 0; hi = 0;
} }
break; break;
case 1: case 1:
break; /* atom, nothing to do */ break; /* atom, nothing to do */
case 3: case 3:
MESSAGE("DDE_ACK: %lx both atom and handle... choosing handle\n", hi); WARN("DDE_ACK: %lx both atom and handle... choosing handle\n", hi);
/* fall through */ /* fall through */
case 2: case 2:
hi = convert_handle_32_to_16(hi, GMEM_DDESHARE); hi = convert_handle_32_to_16(hi, GMEM_DDESHARE);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment