diff --git a/mysql.d b/mysql.d index 415e03c..2ada32d 100644 --- a/mysql.d +++ b/mysql.d @@ -308,7 +308,7 @@ class MySql : Database { } string escapeBinaryString(const(ubyte)[] data) { - return tohexsql(b); + return tohexsql(data); } string escaped(T...)(string sql, T t) { diff --git a/nanovega.d b/nanovega.d index e4fabbd..50c3948 100644 --- a/nanovega.d +++ b/nanovega.d @@ -10671,7 +10671,7 @@ private: return true; } - inout(FONSstate)* getState () inout pure nothrow @trusted @nogc { + inout(FONSstate)* getState () inout pure nothrow @trusted @nogc return { pragma(inline, true); return cast(inout)(&states[(nstates > 0 ? nstates-1 : 0)]); } diff --git a/simpledisplay.d b/simpledisplay.d index 02f9c01..2a2cf4a 100644 --- a/simpledisplay.d +++ b/simpledisplay.d @@ -11850,7 +11850,6 @@ version(Windows) { // returns the value in the *high order word* of the return value // hence the << 16 return 1 << 16; // MNC_CLOSE, close the menu without dinging at the user - break; case WM_SETCURSOR: if(cast(HWND) wParam !is hwnd) return 0; // further processing elsewhere